1
vote
CompareValidator inside an UpdatePanel - VS2008
You could turn off client-side validation for that Validator.
EnableClientScript="false"
This would mean a round-trip to the server to report an invalid state, tho …
2
votes
Method for displaying “loading” message
You can use ajaxSend and ajaxStop on the jQuery object to attach …
1
vote
Better way or reusable code to populate an HTML element or create a select after a jQuery AJAX call
For filling an element with the results of an AJAH call, check out the load method.
I'm not aware of an existin …
