Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
2k views

Why and When to use node js?

Sorry if i'm a bit ambiguous, but i'm trying to understand the real advantages of using node.js instead of other server-side language. I'm a javascript enthusiast, so I'm probably going to play with ...
24
votes
3answers
20k views

Using Excel OleDb to get sheet names IN SHEET ORDER

I'm using OleDb to read from an excel workbook with many sheets. I need to read the sheet names, but I need them in the order they are defined in the spreadsheet; so If I have a file that looks like ...
16
votes
12answers
2k views

When and how do you use server side JavaScript?

Occasionally I search for some JavaScript help and I come upon the term "Server-side JavaScript". When would you use JavaScript server-side? And how? My experiences of JavaScript have been in the ...
9
votes
7answers
3k views

Create a website screenshot/thumbnail server-side?

I'm building a rails app that needs to grab and display a thumbnail screenshot from a URL. I'm having a difficult time even finding where to start. Any help would be greatly appreciated. Thanks.
7
votes
3answers
2k views

node.js running alongside Apache PHP?

I am trying to get my head round node.js... I am very happy with my LAMP set up as it currently fulfils my requirements. Although I want to add some real-time features into my PHP app. Such as ...
7
votes
4answers
461 views

Load random CSS on page refresh

I was wondering whats the best way to call a random css file on page refresh with Javascript? Many thanks
7
votes
11answers
4k views

Save the document generated by javascript

Javascript can manipulate the document the browser is displaying, so the following: <script> ...
4
votes
2answers
156 views

Is it possible to use google analytics for server side?

Is it possible to use google analytics for server side? We are quite familiar with using google analytics for client side of things, but we found ourselves needing to keep track of server events as ...
4
votes
3answers
2k views

ASP.NET HttpModules & Server.Transfer / Server.TransferRequest / RewritePath problems

I will try to be as specific as I can be. I inherited a very antiquated C++ ISAPI filter that secures a classic ASP website and was tasked with the job of creating an HTTPModule to directly replace ...
3
votes
5answers
169 views

Why don't browsers send whether they have javascript enabled/disabled in the request header?

It just seems like something that would be really useful when developing server-side code. If you know that the browser won't be using javascript from the server-side, you could easily accommodate the ...
3
votes
1answer
223 views

Does JSONP require server modifications?

I understand that jsonp is a technique to get around the same origin policy. You basically refer to your json serving server endpoint in a script tag, because script tags are exempt from the SO ...
3
votes
3answers
268 views

Why not run a server side app with daylight saving time enabled?

I've implemented a server side application that records timestamps when records are created and updated. The app assumes that the server clock does not have daylight saving time enabled, (a) because ...
3
votes
3answers
258 views

automatically composit sound - php or something like that - GD library for sound?

Ok does anybody have any idea for good ways to accomplish the following: A user programs some drum loops in flash and is somehow able to download or save an mp3 of the loop. I thought that the ...
3
votes
9answers
340 views

Starting out doing server side things - what languages and techniques to choose?

I've been doing html, css and javascript for quite a long time, mostly for my very own enjoyment. I would say I know fairly much, I've created many simple games and apps and experiments with ...
2
votes
1answer
501 views

Datatables C# ASP.NET getting custom aoColumns definition from server

I'm trying to define aoColumns using ajax and a C# webmethod. I am treating it very similarly to how I am passing in server-side data, using a List> data structure that I add rows of List to. My ...
2
votes
2answers
3k views

Confirmation box from server side in asp.net

I want to show the confirmation box in asp.net from server side: I want to call it from server side because I have to take the customer message from server side. I am using the below code ...
2
votes
3answers
1k views

Suggestions for .Net 3D physics engine

I need physics engine to simulate game world on server. I googled for .Net physics engines and they all were released in 2006-2009. So is there any good physics engine that I can use? What I need ...
2
votes
3answers
69 views

Flex 4 app, coldfusion help

I have some* experience using the flex framework for building web apps. But I have no experience with server side languages, I have heard the saying "choose one and stick to it" several times in ...
2
votes
2answers
263 views

Getting the directory of an uploaded file with perl

I have a Perl script which will allow for a file to be uploaded to my server. I'm not completely done with it yet, but I would like to know, if there is any way for me to get the full path of a file i ...
2
votes
4answers
634 views

Asp.Net Add UserControl to a Page

I have an ASP.Net web site and on one of the pages I'm using a repeater to render several iterations of a UserControl, that UserControl contains a second UserContol that has two text boxes that my ...
2
votes
1answer
93 views

Which asp.net validation control should I use?

I have two textboxes, each contain a time (textboxA / textboxB). I need to be able to validate that textboxA is before textboxB. For exmaple: textboxA = 10:30 / textboxB = 12:30 VALIDATION = true ...
2
votes
5answers
177 views

What would cause ASP.NET validators not to trigger on a deployed site?

Locally it works, I know its the "it works on my machine" syndrome but i cant see why. Simple web page, fields, required field validators, such as <asp:textbox id="tbEmail" runat="server" ...
1
vote
4answers
67 views

how to build a in-memory server side cache in php?

I am trying to reduce the amount of database access by providing a in memory cache. I understand that I can get a cache by using session and cookies, however this only works on a per client basis. if ...
1
vote
2answers
231 views

Is it possible to save JavaScript generated images on the serverside?

I want to use JSChart (http://www.jscharts.com/) to generate a dynamic chart. It uses a <canvas> object. Furthermore I want to save the generated Chart as an image (to put in a pdf file) on ...
1
vote
1answer
74 views

Design and server-side technology [closed]

There is an open source desktop program which is written in Java (Swing) and uses an embedded database (derby). Now I need to develop a mechanism that user can synchronize its data against a server ...
1
vote
2answers
1k views

Invoking a javascript function on image button click in asp.net

I am trying to invoke a jquery function when a client press the image button, below is the code: <asp:ImageButton ID="startUploadLink" runat="server" onclick="startUploadLink_Click" /> ...
1
vote
5answers
208 views

It is a possible call JavaScript code inside HTML page on server-side (Java)?

My Java app download HTML pages from Internet and handle it. Sometimes downloaded HTML pages contain JavaScript code that should be invoked after page loading (JavaScript in <script ...
1
vote
2answers
515 views

How to set style sheet from server side in asp.net

I am using the style sheets for the gridview from this link http://www.cyberslingers.com/Sandbox/GridView.aspx It has various style sheet attached to the same gridview. What I want to attach the ...
1
vote
1answer
507 views

does anyone use APE server?

i am trying to figure out how to work with Ape, but there are some things in the chat demo code that i dont understand and cant find nothing about it in the documentation. here is the code: var ...
1
vote
2answers
167 views

Need a server-side timer (independent of browser)

I'm putting together a website that will track user-defined events with time limits. Every user would be free to create events, and when the time limit expired, the server would need to take some ...
1
vote
4answers
419 views

Server-side programming: PHP vs GWT+RPC

I am trying to develop a webpage which will need to create files in server-side with the text that a user writes in a textarea. Which technology do you suggest me to use for this purpose? PHP or ...
1
vote
2answers
100 views

is oops is the solution to improve php security?

now we are working in one project.in that project we choosed HTML5 and CSS3 designed. but still we have confuse on server side scripting, whether php,ruby,python,scala,and more and more..our ...
1
vote
4answers
427 views

Server-side validation in ASP.NET 2.0

My application is in ASP.NET 2.0 with C#. I have a regular expression validator with the regular expression ^[0-9]*(\\,)?[0-9]?[0-9]?$, now my client don't want this validation at client side but on ...
1
vote
1answer
527 views

Server side control hidden - possible to read values client side?

A quick question. I've got two textboxes running server side and have their visibility turned off. I'm using a couple of ASP.NET controls which require the textboxes to exist. However, I am filling ...
1
vote
2answers
606 views

download a folder from server to local host

I have a code to downolad a particular file that is stored at a particular location on the server... for example i have a file untitled.bmp in the C: drive of my server and i download this to my ...
1
vote
1answer
2k views

Calculate driving directions using PHP?

For my application I need a server to calculate driving directions. The Google Maps API was designed for clientside use only, with a Javascript and Flash API. Is there any way I can run their API's ...
1
vote
3answers
555 views

How can a Perl CGI script communicate with a daemon on the webserver?

I am building a Web interface to monitor an embedded system. I have built a Perl script which runs remote commands and gathers output from that system. Now what I need is a Web interface which makes ...
1
vote
2answers
402 views

How to manage multiple client sessions within server application?

I'm writing web chat application, similar to GTalk. It based on Orbited + Sinatra for client side, and Ruby for server side. I've already implemented all the protocol, everything working good. But. I ...
1
vote
3answers
37 views

A design suggestion for changing php or general server side code through a web console

Ok so this is my situation...a web application in PHP uses a "config" file for various parameters. This config file is nothing but a php file, say config.php with a global array of the form ...
1
vote
6answers
173 views

Anything wrong with using PHP as a server side language?

Is it wrong to use PHP as a server side language? For functions such as mail notifications / fraud checks (look for data, flag, then email type approach) / db cleanup / upload folder cleanup / cronjob ...
1
vote
3answers
99 views

what programming language

When some webpages are not displaying the extensions of server side files which generate that content, how can you know (as a visitor) in what language was that site build? Many thanks
1
vote
5answers
2k views

On form submit background function php running

I am looking for a way to start a function on form submit that would not leave the browser window waiting for the result. Example: User fills in the form and press submit, the data from the form via ...
1
vote
3answers
1k views

Create server-side DVR application to be able to record DVR in FMS

I want to be able to use the DVR compability in FMS3. But to do that I need to implement a server-side DVR application it says in the documentation. The problem is I cannot find any example on this. ...
1
vote
4answers
1k views

How can I make an AJAX server side script in C?

I am looking into AJAX for the first time and I would like to know if it's possible to make the requests from a server side CGI application written in C? Will the C application just use printf for ...
1
vote
4answers
3k views

Browse Files Server-side in ASP.NET

I'm creating an ASP.NET web application to schedule tasks on our server from a remote location using a .NET Wrapper for Scheduled Tasks. However, I'm stuck. The user needs to be able to browse the ...
1
vote
4answers
2k views

Call a server side method using __DoPostBack by the name of the method

i want to call a server side method using __DoPostBack and generating the HTML, but i dont want a hidden ASP runat server control in my page its possible to call a server side method by its name not ...
1
vote
7answers
3k views

API for server-side 3D rendering

I'm working on an application that needs to quickly render simple 3D scenes on the server, and then return them as a JPEG via HTTP. Basically, I want to be able to simply include a dynamic 3D scene in ...
0
votes
1answer
31 views

facebook iframe - getting facebook logo instead of a popup authentication

(using server-side flow) i have a facebook application that is attached to a facebook page through one of the tabs, which makes the application within an iframe. i use the following code below which ...
0
votes
1answer
49 views

countdown timer with servertime php

I want to set up countdown to my store, but countdown date with start and close must assign using php. that means server date of end which i can specify manually and start date will come using php ...
0
votes
1answer
122 views

The max message size quota for incoming messages (65536) …To increase the quota, use the MaxReceivedMessageSize property

I got this crazy problem I'm trying to deal with. I know that when we're getting huge amount of data we must increase the quota on client .config file, but what am I supposed to do if my client is ...

1 2 3