Click here to Skip to main content
15,885,941 members
Articles / Web Development / ASP.NET

CompareValidator’s hidden gem (It does data type validation)

Rate me:
Please Sign up or sign in to vote.
3.80/5 (5 votes)
28 Sep 2009CPOL 12.7K   6  
After years of working in the .NET environment, you can still find new and amazing features.

Man is small and the .NET environment is vast. After years of working in the .NET environment, you can still find new and amazing features. A user on the ASP.NET forums posted this feature I had never discovered… so I thought I'd pass it along.

The CompareValidator is used to compare the value of data in a textbox, but it can also validate the type of data entered into a textbox.

It can validate these types:

  • String
  • Integer
  • Date
  • Double
  • Currency

You have to set the Operator attribute to DataTypeCheck and the Type attribute to one of the above values.

Here's a link with the details:

Here's an example:

ASP.NET
<asp:TextBox ID="TextBoxInteger" runat="server"></asp:TextBox>
<asp:CompareValidator ID="CompareValidator1" runat="server" 
    ControlToValidate="TextBoxInteger"
    Operator="DataTypeCheck" 
    Type="Integer" 
    ErrorMessage="Please enter an integer" />

<asp:TextBox ID="TextBoxDate" runat="server"></asp:TextBox>
<asp:CompareValidator ID="CompareValidator2" runat="server" 
    ControlToValidate="TextBoxDate"
    Operator="DataTypeCheck" 
    Type="Date" 
    ErrorMessage="Please enter a valid Date" />

I hope someone finds this useful.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
EndWell Software, Inc.
United States United States
I am an independent contractor/consultant working in the Twin Cities area in Minnesota. I work in .Net, Asp.Net, C#, C++, XML, SQL, Windows Forms, HTML, CSS, etc., etc., etc.

Comments and Discussions

 
-- There are no messages in this forum --