ValidationExpression="^.*(?=.{7,})(?=.[a-zA-Z])(?=.*[\d])(?=.*[\W]).*$"
This is the expression for the password,
- At Least 7
- Alphanumeric required
- Special Characters
But can i check the textbox must not be empty other than using RequireFieldValidator..
Due to i going to apply Ajax ValidatorCallOutExtender, is hardly to display both validator..