Tagged Questions
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
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 ...
0
votes
1answer
8 views
Header checkbox Selection by checking all checkboxes
I have a radgrid in which on header checkbox and in itemtemplate few checkboxs . I want header checkbox to be selected when all the checkboxs are checked individually checked
0
votes
0answers
114 views
MVC Framework: Client-Side or Server-Side or Both? [closed]
Problem Context:
I am working on a large-scale web-based application.
The main features of the application would be:
1. Cater to thousands of users, simultaneoulsy.
2. Real-time and Collaborative in ...
0
votes
3answers
89 views
Autocomplete in server or client?
I have a winform that allows a user to input value in it's full form and in shortened form (think gmail - that allows to login with username and with username@gmail.com).
In the server, I have a ...
0
votes
3answers
71 views
Impact of web platform on GUI
Web based systems (Client Side GUI only) are known to be platform independent, But, are they development-platform independent too??
To the best i know, Client Side GUI will always be built using HTML ...
0
votes
2answers
601 views
Client Side javascript call from ASP control throws “Too many characters in character literal” error!
I have a javascript to enable text boxes when called, I want to trigger this code when a user picks value "Custom" from a dropdownlist, so that I can display/Hide these new textboxes.
...
0
votes
3answers
2k views
0
votes
4answers
4k views
Is a Session ID generated on the Server-side or Client-side?
This web page http://www.w3schools.com/ASP/prop_sessionid.asp states that a session ID is generated on the ServerSide.
If this is the case, then how does a server know it's still the same client on ...