The Cause Of ASP.NET Validators And Validation Summary Slowness
When building ASP.NET pages, if you use too many validators and validation summaries your pages can become very slow. Have you ever wondered why? Lets build a simple page web page with a few validators. Something like this: The page is composed of: 2 TextBoxes 1 RequiredFieldValidator for each TextBox 1 RangeValidator for each TextBox 1 CompareValidator...