I need to fire some custom JavaScript validation and then submit my ASP.NET using JavaScript.
How do I submit the form using JavaScript?
It should be as simple as
document.forms[0].submit();
Provided, you only have one form on the page, or else you need to use the form name instead of the index 0.