Error System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from
Add following code in your web.config to fix this error
<configuration>
<system.web>
<pages validateRequest="false" />
</system.web>
</configuration>
No comments:
Post a Comment