server-side

Does LinqDataSource perform Server-Side paging by default?

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. ...

Create an "sub" account on Google Analytics through an API dynamically

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! ...

Triggering client-side request on the server.

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...

Is there a way to send data to user in cookie but not have the data retransmitted with every subsequent request?

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. ...

dojo datagrid custom sorting server side

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 ...

Problems with Server-side Includes

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...

How would MVC-like code work in Node.js?

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...

Blocking access to a page in Page_Load method

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...

Check if Javascript is Enabled (Serverside) with Rails

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> ...

HTML notification: What to do on server-side

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...

Automatically add svn keyword properties for new files (server-side)

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...

How to store user actions/answers while taking an online exam to be retrieved if connection is down?

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...

Symfony : ajax call cause server to queue next queries

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....

Excel Automation for Business Solution and Server-Side Processing

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...

Best server-side language for MySQL and PHP

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...

Do copyright dates need to be updated?

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...

Dynamic Server-Side Playlists in Silverlight

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...

run threads on server side & show progress on client side possible???

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 ...

Server-side web browser for PHP?

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...

SWFUpload multiple files server-side handling

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...