Web form validation frameworks

I find that in most of my web projects, most of my time is spent validating user input on both the client and server side.

I've worked with ASP.NET form validation elements, but I've always found them cumbersome and never worked the way I intended them to. So generally, I end up rolling my own check manually.

In my current project, there are about 450 fields for each record, and these records end up updating on different pages, so you can imagine that this requires significant time commitment to validate correctly.

Does anyone know of any good validation framework other than the built-in ASP.NET form validation elements that can help me speed up my validation validation?

Thank.

0


source to share


1 answer


http://peterblum.com/DES/ProfessionalValidation.aspx



It's a great toolbox and incredible value. I love what Scott Hanselman says ... "Not an add-on, but a complete rethink of the ASP.NET Validation Framework. There's a learning curve in there, but it will change the way pages are written. Also check out his Visual Security Security and Peter'sDatePackage. His the documentation is legendary. "

+3


source







All Articles