Hi,
In Asp.Net in controls section -:
What are the different validation controls in asp.net ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Arjun PanwarPosted Jan 10, 2012, 4:34 PM
Thanks
Anuja PawarPosted Jan 4, 2012, 2:32 AM
Satyapriya NayakPosted Jan 3, 2012, 8:44 PM
There are 6 validation controls in asp.net.They are
1.RequiredFieldValidator:-Makes an input control a required field
2.CompareValidator:-Compares the value of one input control to the value of another input control or to a fixed value
3.RangeValidator:-Checks that the user enters a value that falls between two values
4.RegularExpressionValidator:-Ensures that the value of an input control matches a specified pattern
5.CustomValidator:-Allows you to write a method to handle the validation of the value entered
6.ValidationSummary:-Displays a report of all validation errors occurred in a Web page
Refer
http://www.c-sharpcorner.com/uploadfile/puranindia/validation-controls-in-Asp-Net/default.aspx
Thanks