I dont think there is an alternate to this.
1) You can use write a Javascript function and validate it at client-side once the value is entered and focus is off from this conrol otherwise onclick of SUBMIT button validate all the FORM controls using an user-defined javascript function and return sussess/failure on validation and submit the form based on the reult returned.
2) You can submit the values from the form and validate it using ASP functions at the server-side.
AFAIK, there is no other possibility.
I would STRONGLY suggest doing both client-side and server-side validation as a good practice, as considering the cross-browser-compatibility, some functionalities may work in some browser and some may not. But you got to take pain in coding for both the types of validation for the better working of you app.
Hope that Helps.
Cheers!
-Vijay G