Live Chat Icon For mobile
Live Chat Icon

Why do I get the error message ‘A potentially dangerous Request.Form value was detected from the client ‘

Platform: ASP.NET| Category: Error Handling

Sounds like you are running version 1.1 of ASP.NET / .NET Framework, which added a new security feature called request validation. Request validation looks at every request and determines if it could be a possible CSS (Cross Site Scripting) attack. By default Request Validation is on for every page.

If you wish to allow users to post arbitrary HTML to you site you need to turn off request validation:


<%@Page ValidateRequest='false' %> 

For more information check out : Protecting Against Script Exploits in a Web Application on MSDN

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.