Hi,
I have a form with few html controls. One image button is a asp control and on client click I have a jquery validation and once this validation is successful, i want the button click server side event to occur. Here is the code
var summary = "";
summary += isValidMemberID();
summary += isValidDOB();
summary += isValidFName();
summary += isValidLName();
summary += isValidZIP();
&n ...
Go to the complete details ...