I have a textbox which letting user to enter their password.
My password format is
- Starting at least 1 non-alphanumeric
- Continue with alphanumeric
- Length: 7 and above.
What should i put in the validate expression?
<asp:RegularExpressionValidator ID="RegExpPass" runat="server" ErrorMessage="Password Length at Least 7 With Special Character" ControlToValidate="txtPass" ValidationExpression="^[a-zA-Z0-9'@&#.\s]{7}$" ForeColor="Red" />