Hi I'm running into a bit of an issue. I have a form on a webpage that uses a bunch of HTML controls (text boxes, check boxes, drop downs, etc...). I'm going to to add the data entered into a database, but it needs to be validated first. I much prefer to have the validation done on the client side because it's cleaner. So is it possible to do all the error checking n' such with JavaScript, then when it's all checked out, send a true or false value to the server side code so it knows to start processing it?
As of now I've been doing my JavaScript validation, and then mimicking it with the ASP.NET code. It works, but there has to be a better way.
Thanks in advance