Tagged Questions
2
votes
2answers
451 views
JQuery/ ASP.Net - How to Maintain the State of Hidden UI Elements across Postbacks?
I'm working on a webform with various controls. Depending on user-input I show/hide (using JQuery's show()/hide() functions) bits of the GUI. However if the form is posted-back and fails validation, I ...
2
votes
3answers
733 views
Client Side Validation for different control events
I have a custom validator attached to a textbox control as follows
<td align="center" width="10px">
<asp:CustomValidator ID="validateDateText" ControlToValidate="dateTextBox"
...
2
votes
5answers
181 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
551 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
2answers
73 views
how to call javascript function from client side on anchor click
I have javascript function sample('textValue') and have to call at server side on anchor click. I tried below code
string text="xyz";
anchor.Attributes.Add("onclick","javascript:sample('"+text+"');
...
0
votes
1answer
255 views
ASP.Net RadioButtonList in a Group with JQuery
I've got some radiobuttons in my webform, they are all part of the same group
<asp:RadioButton runat="server" ID="rbMonFriWkends" GroupName="HoursWkSelect" CssClass="ChbxToggler ...
0
votes
1answer
160 views
How to fix HTML from WCF-webservice in AJAX Client Side-templates
I have a problem with my templates, when I return HTML, it's encoded by default, and I cannot find a way to "fix" it.
I want to replace NewLines (\u000a) with a straight <br />, but I always ...
0
votes
2answers
621 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
2answers
1k views
Asp.Net Rating Control
I can't get the ASP.NET Rating control's selected value(Current Value) in javascript. I am using Rating control in datagrid and do you know how I can get the CurrentValue of ASP.NET Rating in ...
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 ...