validate-request

ASP.NET: A potentially dangerous Request.Form value was detected from the client

I have a client that claims to get the server error "A potentially dangerous Request.Form value was detected from the client" ...and this is likely to be that html is entered and something I need to fix a better way of managing than validateRequest=true. http://www.aspcode.net/A-potentially-dangerous-RequestForm-value-was-detected-fro...

ValidateRequest per control

Hi, My ASP.NET page contains "ValidateRequest = true". However, there is one textbox in the page for which I don't want ASP.NET to validate. Is there a way to make it false for that one control? If there isn't, is there a way to ignore the "Potential Threat" error, assuming it comes from that particular control? Thanks ...

ValidateRequest="false" doesn't work in Asp.Net 4

Hi I have a form at which I use ckeditor. This form worked fine but now doesn't work in Asp.Net 4. Any suggestions? I have ValidateRequest="false" directive. ...

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

Hi I have one asp.net application, which has some problems while i am entering the special characters such as ": &#, " in the search box. If i enter this text in search box, i got the exception like this. A potentially dangerous Request.Form value was detected from the client (txtValue=": &#, "). then i searched on the net, i go...

How to validate data when validateRequest is set to "false"

Hi, Do sites like Stackoverflow or asp.net use validateRequest= "false" at their page directive? If "Yes" then how they are checking the user input and if "NO" then how they are able to postback the data ? ...