web analytics

A potentially dangerous Request.Form value was detected from the client in asp.net

Options
@2016-03-12 12:56:44

Enabling detailed error message can leak critical information from your app. You should never enable detailed error messages on a production app.

<configuration>
   <system.web>
          <customErrors mode="Off"/>
   </system.web>
</configuration>

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com