Frequently Asked Interview Questions

What are different validation controls provided by ASP.NET?

ASP.NET Validations Controls are 
  1. RequiredFieldValidator :- Checks whether a control contains data.
  2. CompareValidator :- Checks whether an entered item value matches an entry in another control.
  3. RangeValidator :- Checks whether an entered values is in specified range.
  4. RegularExpressionValidator :- Checks whether an entered item matches a specified format. 
  5. CustomValidator :- Checks the validity of an entered item using a client-side script or a server-side code, or both.
  6. Validation Summary :- Displays validation errors in a central location or display a general validation error description.

Most Visited Pages

Home | Site Index | Contact Us