The title says it all. I've seen hints around the net that this is the case, but I can't find any official documentation to this effect. I want to be sure I have my facts straight before I utilize the LinqDataSource. Thanks guys.
...
Does anyone know how (if possible) to create an account dynamically? I have a few accounts I need to setup on Google Analytics, and I would love to not have to manually enter each one on GA's site.
Thanks for your help!
...
I thought I understood how Open ID works, but now I'm confused...
FYI, I'm not trying to understand how to use Open ID as a developer, but rather the actual actions it uses to authenticate via the client's browser.
As I understood, the user (for example) choose Google as their Open ID provider. The server then requests a pre-determined...
I would like to send some sort of token on one request and store it at the client but not have that token retransmitted on subsequent requests.
...
Hello
I am using dojo.data.ItemFileWriteStore to draw a dojo datagrid (which works fine) and the grid shows properly. I was using client side sorting and that was also working fine.
but now I need to change the sorting and do that server side. For this I am trying to use onHeaderCellClick event, using which I am able to run a javascript ...
I desperately want to use server-side includes in a project I'm working on because I just have some HTML that repeats and I need to get it on several pages. Must I use ascx or some other include technology... I mean, will lightning strike if I use server-side includes?
My client -- the middle-person -- says "do what's easiest, this wil...
I'm starting to get my head around node.js, and I'm trying to figure out how I would do normal MVC stuff. For example, here's a Django view that pulls two sets of records from the database, and sends them to be rendered in a template.
def view(request):
things1 = ThingsOne.objects.all()
things2 = ThingsTwo.objects.all()
ren...
I have a page that do some validations in Page_Load method
According this validation i need to block the access to this page.
Example:
protected void Page_Load(object sender, EventArgs e){
if (!IsPostBack)
{
if (MyValidation)
{
// The page is loaded an de user get access
}
else
{
// Here, i need to block th...
How would you check if javascript is enabled in Rails? So that I could do something like this in the views:
<div>
<% if javascript_enabled? %>
<p>Javascript Enabled!</p>
<%- else -%>
<p>No Javascript</p>
<%- end -%>
</div>
...
I am interested in doing a stackoverflow type notification on my website. I know there are a few questions on this topic, but all of them are concerned with the client side css and ajax.
I would like to know the best way to handle things on the server side (jsp). I want to notify all users currently using the system that the server wil...
I want to add svn properties (like svn:keyword=Id Date Rev Author;) to files on commits on new files.
For this to work there may be two main options:
client-side, altering the autoprops in the svn client configuration
Server-sode, do some magic with commit-hooks
The client side is not always desirable, as control over the client se...
For an online examination system, user actions/answers to be stored and later retrieved if user connection is down.
Which logic should be preferred, client side logic [cookie], or server side logic [Session/Database]?
[Edit]
How user answers will be stored? using specific timer interval for storing user answers? or after specific parts...
Hello,
I've a problem with my application when an ajax call on the server takes too much time : it queue all the others queries from the user until it's done server side (I realized that canceling the call client side has no effect and the user still have to wait).
Here is my test case :
<script type="text/javascript" src="jquery-1.4....
Hi,
Our company has thousands of Excel files, where each Excel file describes one IPVPN network. This Excel files follow single format, which keep data on contact information, site detail, router specifications, primary/backup link specific details, VRF etc.
From time to time, the format change, and we have to dedicate few person to ma...
So I have access to a dedicated server and want to finally create my game - it's a browser based game, fairly simple. I know PHP and MySQL fairly well and would want to integrate with them on the front end.
The question is what is a good server-side language to use either as a constant process or with cron to interface with the MySQL d...
Every now and then I see a web site that has an old copyright date. In my mind, I always think "Look at the sucker who forgot to update his copyright year!" Then, while I was hard-coding a copyright year into the site I'm currently designing, it suddenly struck me:
How the hell am I going to remember to update this?
My immediate react...
I'm trying to generate dynamic video playlists for Silverlight, to be able enable playback from several diffent video files.
E.g. I need to tell Silverlight to play 10 seconds of video 1, starting at timecode 1 minute 15 seconds and then seamlessly change to play 60 seconds of video 2 starting at timecode 5 minutes 2 seconds.
It has to p...
I want to run a thread pool on server side & want to show threads work progress on client side. Is this possible. If so kindly guide me. thanx in advance
...
If you wanted to re-create the DOM server-side and manipulate it in PHP, how would you choose to go about it?
I'm looking for a fast, multi-user complete server-side web browser that can interface with PHP and run complete Javascript.
Like Jaxer but something I can use with PHP... an extension would be fine, or even an Apache mod.
Ide...
I need the user to be able to upload multiple files to my server, thus I am using the SWFUpload utility. SWFUpload sends the files one by one, and I need to store them all in the same temporary directory. My ASP.NET handler recieves the files one by one and I can store the file appropriately.
My problem is: How do I know which files be...