Mega Code Archive

 
Categories / ASP.Net Tutorial / Validation
 

Making comparisons with the CompareValidator control

<%@ Page Language="VB" %> <script runat="server">     Protected Sub Button1_Click(sender As Object, e As EventArgs)        Label1.Text = "Passwords match"     End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>CompareFieldValidator</title> </head> <body>     <form id="Form1" runat="server">         Age:         <asp:TextBox ID="TextBox1" Runat="server"></asp:TextBox>           &nbsp;         <asp:CompareValidator ID="CompareValidator1"                                Runat="server"                               Operator="GreaterThan"                                ValueToCompare="18"                               ControlToValidate="TextBox1"                               ErrorMessage="You must be older than 18 to join"                                Type="Integer">         </asp:CompareValidator>                      <asp:Button ID="Button1" OnClick="Button1_Click"               Runat="server" Text="Login"></asp:Button>                      <asp:Label ID="Label1" Runat="server"></asp:Label>              </form> </body> </html>