What characters are considered safe for passwords in a ASP.NET MVC4 application? And what is the correct way to validate the value? I've been trying to use alphanumeric characters plus several simple characters. Unfortunately, I am running into problems with the RegEx not firing.
The characters I am allowing are:
!@#$%&+
The validation attribute and RegEx I am using is:
[RegularExpression(@"^[a-zA-Z0-9!@#$%&+]*$")]
