Validation Controls.
http://www.devhood.com/Tutorials/tutorial_details.aspx?tutorial_id=46
With ASP.NET, there are six(6) controls included. They are:
- The RequiredFieldValidation Control
- The CompareValidator Control
- The RangeValidator Control
- The RegularExpressionValidator Control
- The CustomValidator Control
Validator Control Basics
All of the validation controls inherit from the base class BaseValidator so they
all have a series of properties and methods that are common to all validation controls.
They are:
- ControlToValidate - This value is which control the validator is applied
to.
- ErrorMessage - This is the error message that will be displayed in the validation
summary.
- IsValid - Boolean value for whether or not the control is valid.
- Validate - Method to validate the input control and update the IsValid property.
- Display - This controls how the error message is shown. Here are the possible
options:
- None (The validation message is never displayed.)
- Static (Space for the validation message is allocated in the page layout.)
- Dynamic (Space for the validation message is dynamically added to the page if validation fails.)
- None (The validation message is never displayed.)
The first control we have is the RequiredFieldValidation Control. As it's obvious,
it make sure that a user inputs a value. Here is how it's used:
Required field: <asp:textbox id="textbox1" runat="server"/> |
Inside the validator tag, we have a single *.
The text in the innerhtml will be shown in the controltovalidate if the control is not valid.
It should be noted that the ErrorMessage attribute is not what is shown.
The ErrorMessage tag is shown in the Validation Summary (see below).
The CompareValidator Control
Next we look at the CompareValidator Control. Usage of this CompareValidator is for confirming new passwords, checking if a departure date is before the arrival date, etc. We'll start of with a sample:
Textbox 1: <asp:textbox id="textbox1" runat="server"/><br /> |
Another usage of the ComapareValidator is to have a control compare to a value. For example:
Field: <asp:textbox id="textbox1" runat="server"/> |
The data type can be one of: Currency, Double, Date, Integer or String. String being the default data type.
The RangeValidator Control
Range validator control is another validator control which checks to see if a control value is within a valid range. The attributes that are necessary to this control are: MaximumValue, MinimumValue, and Type.
Sample:
Enter a date from 1998: |
The regular expression validator is one of the more powerful features of ASP.NET.
Everyone loves regular expressions. Especially when you write those really big nasty
ones... and then a few days later, look at it and say to yourself. What does this
do?
Again, the simple usage is:
E-mail: <asp:textbox id="textbox1" runat="server"/> |
Here is a webpage to check regular expressions.
The CustomValidator Control
The final control we have included in ASP.NET is one that adds great flexibility to our validation abilities. We have a custom validator where we get to write out own functions and pass the control value to this function.
Field: <asp:textbox id="textbox1" runat="server"> |
OnServerValidate. These are the tell the validation control which functions
to pass the controltovalidate value to. ClientValidationFunction is usually a javascript
funtion included in the html to the user. OnServerValidate is the function that
is server-side to check for validation if client does not support client-side validation.
Client Validation function:
<script language="Javascript"> |
Sub ServerValidate (objSource As Object, objArgs As ServerValidateEventsArgs) |
Validation Summary
ASP.NET has provided an additional control that complements the validator controls.
This is the validation summary control which is used like:
<asp:ValidationSummary id="valSummary" runat="server" |
The validation summary control will collect all the error messages of all the non-valid
controls and put them in a tidy list. The list can be either shown on the web page
(as shown in the example above) or with a popup box (by specifying ShowMessageBox="True")
Now you know how to use the Validator Controls in ASP.NET! Have fun!
I will also upload a sample of all the validator controls to the code sample section.
Acknoledgment: Professional ASP.NET (published by Wrox) was used a reference.
It's a good book!
Tips to remember
- If you are doing server-side validation, make sure the button onclick method has
a Page.IsValid if statement or it will look like your validators aren't doing anything
- Don't forget to wrap everything in the <form runat=server> tag.
No comments:
Post a Comment