Net, I am getting an error saying
"A potentially dangerous Request.Form value was detected from the client" when I am entering a password with special characters "<" and ">" in it, I found some solutions on online saying add validrequest="false" and requestValidationMode="2.0" I did add both the statements in the web.config file and over the top of the page my web config looks like this
<system.web>
<authorization>
<allow roles="TARGET.DRP.ADMINS, TARGET.DRP.BUSINESS_ADMINS, TARGET.DRP.DEVICE_MNGRS, TARGET.DRP.USERS, TARGET.DRP.MANUFACTURERS"/>
<deny users="?"/>
</authorization>
<httpRuntime requestValidationMode="2.0"/>
<compilation debug="true"/>
<pages validateRequest="false"/>
</system.web>
And also this is showing up only if the password has "<" or ">" but if the password has both "<" and ">" it is working fine. Is there any way to resolve this.
Thank you..