Having problems using validate plugin
I am using this plugin on my asp.net page. This plugin obvoiusly suspends my submit button to verify the text boxes. However, it does not return to my submit button. What i mean, is that I have a C# onclick event which never gets executed. It just tells me that all text boxes are ok. (I am very new to this).
I have traced it down to the following code that is getting executed.
-
submitHandler:
function () { -
$(
"div.error").hide(); -
alert(
"submit! use link below to go to the other step"); -
}
How do I make it to run my C# function?