Having problems using validate plugin

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.
 
  1. submitHandler:
  2. function () {
  3. $(
  4. "div.error").hide();
  5. alert(
  6. "submit! use link below to go to the other step");
  7. }
 
 
How do I make it to run my C# function?