Friday, October 24, 2008

Error System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from

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: