ASP.NET Validation Controls are powerful server controls that are used for validating user input. These controls provides both server side and client side validation.
The client side validation features can be used to give your users an improved UI experience. By using the client side features, your users will not need to wait for a full page postback to occur only to discover that they have failed to fill out your form completely. Instead, the client side features can be using to notify the user immediately (before the page is submitted) about any missing and/or invalid data.
One of the shortcomings of the validation controls under the 1.1 Framework was the inability to validate only portions of your form. Whenever the validators were triggered, all validators on the page were checked even if they might not be related to the particular button being clicked. With the 2.0 Framework, a new ValidationGroup property was introduced. By setting the ValidationGroup property on a button, only those validation controls that were also set to that same ValidationGroup will be checked.
The validation can be checked on the server side with the help of the IsValid property of the validation control. Additionally, you can use the IsValid property of the Page to check the validation result of all validation controls on the page. Before testing the IsValid property of the validation control or the page, it is important that the validation check has already been performed through the use of the Validate method. You can call Validate on individual controls and also on the page itself.
Here is a list of the validation controls
Links
White papers/Blogs:
Videos
Revision number 5, Thursday, July 17, 2008 1:11:20 PM by
You must Login to comment.
|
Mon, Aug 4, 2008 4:59 AM
by saravananr
|
Artilce is good. But most of the Links not working. so we are unable to know more about the Validation controls.
|
|
Mon, Sep 7, 2009 4:25 AM
by virkmasood
|
good article, my required information was there.
|
Revision #8
Thu, Jul 10, 2008 5:43 PM
by
|
Input and Data Validation
Garbage in, garbage out. You can avoid data cleanup tasks on the backend by avoiding bad data coming in. ASP.NET validation controls and third party validation controls help you receive the right data in the right format. In addition, the AJAX Control Toolkit
|
Revision #4
Fri, Jun 27, 2008 9:35 PM
by
|
ValidationSummary
A ValidationSummary control is displayed when the IsValid property of the page is false. It "polls" each of the validation controls on the page and aggregates the text messages exposed by each. It does thisthrough the Page.Validators collection;
|
New
Mon, Feb 4, 2008 8:00 AM
by
|
Data-centric UI Controls
Both the GridView and ListView are new Data Controls in Visual Studio 2008. Scott Guthrie has a great introduction that uses the ListView Control. He builds a product catalog from scratch with complete control over the CSS and HTML. Watch Kashif Alam's Webcast
|