Tagged Questions
The term "client-side" refers to that portion of a web application which runs in the user's browser. Client-side code is most commonly written in Javascript. The counterpart of "client-side" is "server-side", i.e., the part of a web application running at the web server.
24
votes
1answer
8k views
ASP.NET MVC 3 client-side validation with parameters
Following on from this post Perform client side validation for custom attribute
I am trying to get my head around how to do this, passing additional parameters to the client-side script
As I ...
22
votes
4answers
2k views
Create a file in memory for user to download, not through server
Is there any way I can create a text file on the client side and prompt the user to download it, without any interaction with the server?
I know I can't write directly to their machine (security and ...
17
votes
5answers
2k views
Client-side XSLT
I converted my whole site to XML/XSL and I would like to know all of the current issues with performing Client-side XSLT.
Here are the ones i already know of (from first-hand experience):
...
11
votes
11answers
1k views
Cross domains sessions - shared shopping cart cross domains
we are solving the problem with eshop (php, mysql). The client want to have the same eshop on two domains with shared shopping cart. In the shop customer can do the shopping without users account ...
10
votes
3answers
2k views
GWT/Javascript client side password encryption
I'm implementing authorization in my gwt app, and at the moment it's done in the following fashion:
The user signs up by putting his credentials in a form, and I send them in clear text to the ...
9
votes
2answers
857 views
Templating language for both client-side and server-side rendering
I'm investigating JavaScript templates as a way to render our views. The goal is to be able to render client-side for users that have JavaScript enabled to to render the same templates/data server ...
9
votes
1answer
3k views
Disable client-side validation in MVC 3 “cancel” submit button
OK, been trying things for hours and could use some help. I'm trying to implement a page in MVC 3 that has "back" and "next" buttons. When the back button is clicked I want to disable client-side MVC ...
9
votes
5answers
754 views
Server side templates, client side templates - Automatic conversion?
With the event of the jQuery templates plugin, I am wondering how to maintain both server-side and client-side templates.
Because in my case, I have some templates, that would be duplicates - ...
9
votes
7answers
4k views
Is it possible to do a traceroute in the browser?
I'm looking for a way to do a traceroute client-side, i.e. in a browser.
As far as I know, it's not possible to send ICMP, UDP or TCP packets with arbitraty TTL values via Javascript or Flash. I know ...
9
votes
9answers
2k views
Can Python be used for client side web development?
If yes are there any frameworks/Tutorials/tips/etc recommended?
N00b at Python but I have tons of PHP experience and wanted to expand my skill set.
I know Python is great at server side execution, ...
8
votes
8answers
2k views
Pagination: Server Side or Client Side?
What is it best to handle pagination? Server side or doing it dynamically using javascript?
I'm working on a project which is heavy on the ajax and pulling in data dynamically, so I've been working ...
7
votes
3answers
146 views
What are the valid use cases for client side encryption?
I just read about the Stanford Javascript Crypto Library (jsfiddle example) which supports SHA256, AES, and other standard encryption schemes entirely in javascript. The library seems very nifty, but ...
7
votes
7answers
544 views
How fast is client side javascript versus server side Java?
I am wondering how fast client side javascript is compared to server side Java in terms of raw computational power.
For instance, sorting. Should it all be done server side if possible? And how about ...
7
votes
6answers
2k views
A step-up from TiddlyWiki that is still 100% portable?
TiddlyWiki is a great idea, brilliantly implemented. I'm using it as a portable personal "knowledge manager," and these are the prize virtues:
It travels on my USB flash memory stick and runs on ...
7
votes
6answers
269 views
How far can I go with JavaScript?
I need to do as much as possible on the client side. In more details, I would like to use JavaScript to code an interface (which displays information to the user and which accepts and processes ...
7
votes
11answers
4k views
Save the document generated by javascript
Javascript can manipulate the document the browser is displaying, so the following:
<script>
...
7
votes
5answers
8k views
7
votes
7answers
14k views
How to get client date and time in ASP.NET?
I think the question says it all. If I use DateTime.Now, then I get the date and time from the server point of view. I've heard of JavaScript solution, but I wonder if there is another solution.
...
7
votes
8answers
3k views
When would you use a Web User Control over a Web Custom Control?
Can someone explain when to use each of these? They almost seem interchangeable in many cases.
The Custom Control gets added to the toolbar while the User Control (ascx) can not. The Custom ...
6
votes
2answers
133 views
How to keep API keys secret when using client side Javascript?
For example, check out this Facebook plugin.
In the client side the API key is clearly visible. What is stopping another user from obtaining this key and using this feature on a different site?
I ...
6
votes
2answers
170 views
Template engine for Ruby and Javascript
We are building a web page with hashtag navigation. There is lots of data, which comes in as JSON and we use client-side templates (jQuery) to render it. So what are the options for reusable templates ...
6
votes
1answer
410 views
Is there any drawback to set ClientIDMode = Static on every object ( set on maincontent of master page)
I am working on asp.net project and each time i need to use jquery identifier $(#"objectID"). I have to change the ClientIDMode on each object to be static. Since I have noticed that the default ...
6
votes
2answers
2k views
How can we keep OpenX from blocking page load?
We're using OpenX to serve ads on a number of sites. If the OpenX server has problems, however, it blocks page loads on these sites. I'd rather have the sites fail gracefully, i.e. load the pages ...
6
votes
1answer
737 views
Bug? Client-side validation in ASP.NET MVC 2 causes ValidationSummary message to show even if there is no error
With client-side validation turned on in ASP.NET MVC 2 RC2, the validation summary message is visible even when I first load my Edit.aspx page. It does not show in bold red, however, just plain text. ...
6
votes
5answers
204 views
Understanding AJAX
Having been primarily a server-side programmer(ASP.NET WebForms) I'm trying to get my mind wrapped around AJAX outside of the "catch-all" approach of using UpdatePanels in the Microsoft AJAX controls. ...
6
votes
7answers
777 views
Does it make security sense to hash password on client end
If you were to hash a user's password prior to sending it across the line and leaving it in plain-text in memory, would this improve the security of the application?
I would assume this mitigates a ...
6
votes
9answers
470 views
How do you avoid duplication of validation on the server and client-side?
How do you avoid duplication of validation on the server and client-side? Is there a web programming platform that generates one from the other, so I don't have to keep the two in sync?
6
votes
7answers
2k views
What is the best way to measure Client Side page load times?
I'm looking to monitor the end user experience of our website and link that with timing information already logged on the server side. My assumption is that this will require javascript to to capture ...
5
votes
3answers
230 views
Can anyone tell me that is it possible to generate PDF files using javascript?
I need to create a PDF file on the client side using JavaScript. How do I do that?
5
votes
5answers
934 views
Persistent storage on client side
Is there any way to have some persistent data (like an XML file or so) apart from cookies at client side? I know that's not possible with JavaScript directly. But any other way like Applets or ...
5
votes
2answers
79 views
Client side browsers debuggers: how can I see the list of handlers currently registered on an element?
Learning client side code of an existing site, would like to understand some activity that takes place totally at the client side.
Want to know what JS handlers are being called when I click on a ...
5
votes
1answer
399 views
Binding javascript keypress events
I have a need to monitor the state of the Shift key, whether it is up or down. Its purpose is to notify the user that while the shift key is held down, the drag and drop operation they are about to ...
5
votes
1answer
773 views
How to update jQuery DropdownChecklist from server-side?
I'm working on an ASP.Net webpage which will use the jQuery Dropdown Checklist (http://code.google.com/p/dropdown-check-list/). I'm fairly inexperienced with JavaScript and completely new to jQuery.
...
5
votes
4answers
4k views
ASP.NET MVC Client Validation with jQuery using Html.ValidationMessage?
I am trying to tap into the HTML.ValidationMessage() element to write so really custom client side validation with jQuery. Is this even possible? My server side validation is displayed using the ...
5
votes
5answers
8k views
ASP.NET MVC Client Side Validation
I am all about using ASP.NET MVC, but one of the areas that I hope gets improved on is Client-Side Validation.
I know the most recent version (Preview 5) has a lot of new features for Validation, but ...
4
votes
1answer
78 views
How to preserve sensitive information in Client-Side-Binary?
I look forward to develop an android / iphone application, those will be using a private API (Non-Free) with embedded client-key.
Now, since it is possible to reverse-engineer application binaries ...
4
votes
3answers
189 views
A way to create random-noise background image (png) with javascript?
The new layout of YouTube added a background random-noise which I like very much, having seen almost exactely the same effect on other sites, so I plan to use the same technique in my webpage ...
4
votes
4answers
174 views
How can I get a program on a client machine to run from an ASP.NET page?
I have an app that I'm trying to run on an intranet. On my machine it worked great (famous last words) but when I put it up to the server, it didn't work. As soon as I saw the "the system cannot find ...
4
votes
5answers
284 views
Timing user tasks with seconds precision
I'm building a website where I need to time users' tasks, show them the time as it elapses and keep track of how long it took them to complete the task. The timer should be precise by the second, and ...
4
votes
3answers
119 views
Client side javascript driven websites [closed]
Is it possible to build dynamic web applications using client side javascript as the pivotal point? I'm not talking about server side javascript (like node), I'm talking about handling most of the ...
4
votes
5answers
203 views
What are best practices to maintain separation of concerns when building HTML with JavaScript?
I'm currently learning jQuery by reading jQuery in Action.
The book discusses separation of concerns by using 'Unobtrusive JavaScript.' I grok that keeping behavior specified by JavaScript out of the ...
4
votes
2answers
111 views
Your programming language in a browser (i.e. Javascript)?
Is it possible to write a plugin that would allow client-side scripting to be done on the browser in a non-Javascript language (take your pick - TCL, Rebol, Perl, Ruby, Python, Lisp, etc)?
To ...
4
votes
1answer
204 views
How to digitally sign an xml document through the client's browser?
When I visit a site which requires a client-side certificate the browser automatically opens a popup asking me which personal certificate I would like to use to connect.
Is there any similar ...
4
votes
1answer
445 views
Client-side predictive search relevance calculation with multiple parameters
I'm writting a predictive search that, for server performance requisites (all is cached), must be run on the client browser. The items are TV shows and movies and are matched by title, actors and ...
4
votes
8answers
239 views
Is this “craziness” stack of technologies to create web apps good?
I thought about web apps and current technology staff like PHP, Python, Ruby. Red stack and SE about languages, etc.
But I don't get one thing - why servers should do all this work to create user ...
4
votes
3answers
246 views
How would I design a client-side Queue system?
OVERVIEW
I'm working on a project and I've come across a bit of a problem in that things aren't happening in the order I want them to happen. So I have been thinking about designing some kind of ...
4
votes
3answers
351 views
What client-side web scripting languages are there other than JavaScript and VBScript?
How many client-side scripting language implementations did you see except JavaScript and VBScript? Like: type="text/C++Script", text/CSharpScript, text/oberonScript, etc.
How can I learn if my ...
4
votes
4answers
195 views
Building web pages on the server-side or client-side?
I've always wondered how to decide on choosing between using server-side code versus client-side code to build HTML pages. I'll use a very simple php vs javascript/jquery example to further explain ...
4
votes
1answer
740 views
Accessing Property Bag for List Item using SharePoint Client Object Model or Web Services
Just to ask if it is possible to access and update properties in the list item's property bag via the SharePoint 2010 client object model? I can see that it possible to get the web's property bag ...
4
votes
4answers
480 views
Pure HTML + JavaScript client side templating
I want to have achieve something similar to Java Tiles framework using only client side technologies (no server side includes).
I would like to have one page, eg layout.html which will contain layout ...