Validation controls are responsible to validate the data of
an input control. Whenever you provide any input to an application, it performs
the validation and displays an error message to user, in case the validation
fails.
ASP.NET 4.0 contains the following six types of validation
controls:
CompareValidator - Performs a comparison between the values
contained in two controls.
CustomValidator - Writes your own method to perform extra
validation.
RangeValidator- Checks value according to the range of
value.
RegularExpressionValidator - Ensures that input is according
to the specified pattern or not.
RequiredFieldValidator - Checks either a control is empty or
not.
ValidationSummary - Displays a summary of all validation
error in a central location.
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Validation controls are responsible to validate the data of an input control. Whenever you provide any input to an application, it performs the validation and displays an error message to user, in case the validation fails.
ASP.NET 4.0 contains the following six types of validation controls: