Mega Code Archive

 
Categories / ASP.Net Tutorial / Validation
 

Using the CompareValidator to test values against other control values

<%@ 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">                      Password<br>             <asp:TextBox ID="TextBox1" Runat="server"               TextMode="Password"></asp:TextBox>              &nbsp;             <asp:CompareValidator ID="CompareValidator1"               Runat="server" ErrorMessage="Passwords do not match!"               ControlToValidate="TextBox2"               ControlToCompare="TextBox1"></asp:CompareValidator>                      Confirm Password<br>             <asp:TextBox ID="TextBox2" Runat="server"               TextMode="Password"></asp:TextBox>                      <asp:Button ID="Button1" OnClick="Button1_Click"               Runat="server" Text="Login"></asp:Button>                      <asp:Label ID="Label1" Runat="server"></asp:Label>              </form> </body> </html>