A user is receiving "a potentially dangerous request.form value was detected" error message when trying to log in. I set validateRequest="false" in the logon.aspx page as well as the following in the "location" of web.config:
<location path="~/Account/Logon.aspx">
<system.web>
<pages validateRequest="false" />
<httpRuntime requestValidationMode="2.0" />
<authorization>
<allow users="?" />
</authorization>
</system.web>
</location>
User still getting the error message. I askded what special characters he has in his password and he has "&", "#" and "(", none of which should generate this error (I have # and * in mine). Is there anything else I can try?
Almost all suggestions to fix this issue, including those at this site, recommend the use of "validaterequest=false" which does not seem to help.