Disable Client Side Validations in ASP.Net In order to check if all server side validations are working correct,we may need to disable all client side validations. So, In Page Load foreach (BaseValidator vValidator in Page.Validators) vValidator.Enabled = false;
A Blog For Passionate Dot net Developers