I need to fire some custom JavaScript validation and then submit my ASP.NET using JavaScript.
How do I submit the form using JavaScript?
If you want to post back, you can use __doPostBack() that ASP.NET put into the . Take a look at this link. If you want to submit another form just call .submit() on the form element.
__doPostBack()
.submit()