Showing posts with label CompareValidator. Show all posts
Showing posts with label CompareValidator. Show all posts

Validate Password and Confirm Password using CompareValidator

When you want to compare Password and Confirm Password Textbox value, you can use CompareValidator using below code.

<asp:TextBox ID="txtPassword" runat="server" TextMode="Password" />
<asp:RequiredFieldValidator ID="RequiredPass" runat="server" ControlToValidate="txtPassword" Text="*" />

Confirm Password <asp:TextBox ID="txtPasswordCompare" runat="server" TextMode="Password" />
<asp:CompareValidator runat="server" ID="ComparePass" ControlToValidate="txtPassword" ControlToCompare="txtPasswordCompare" Text="Password mismatch" />