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 got one general solution for this that to set the validaterequest to false. But no changes has been made on my application. Please help me for solving this issue. Any response that would be appreciated.

link|improve this question

1  
Where exactly did you set ValidateRequest? – EMP Jun 2 '10 at 6:10
<%@ Page ValidateRequest="false" – MAC Jun 2 '10 at 6:12
feedback

2 Answers

up vote 6 down vote accepted

Add a web.config containing

<system.web>
    <pages validateRequest="false" />
</system.web>

to the directory with the page that has the form in question.

See http://www.asp.net/learn/whitepapers/request-validation for a complete description.

In case you use asp.net 4.0, you may try

<httpRuntime requestValidationMode="2.0" />

See also

link|improve this answer
I tried this method too.. But no change – MAC Jun 2 '10 at 6:11
Hm, works in all my web applications. Do you use .net 2.0 or above? Which OS? – marapet Jun 2 '10 at 6:17
.net 3.5 and OS is server 2003 IE8 – MAC Jun 2 '10 at 6:38
Sorry, works for me in the same environnement. I'd try to reproduce this behavior on a clean web site in order to exclude other components and web.config settings. – marapet Jun 2 '10 at 7:12
1  
If you need to set ValidateRequest="false", you should do it on a page-by-page basis in the <%@ Page %> directive; otherwise you're potentially opening a security hole in your whole application. – PhilPursglove Jun 2 '10 at 8:17
show 1 more comment
feedback

A little late, but in agreement with those saying putting this in web.config is a security hole. I do it with the [ValidateInput(false)] attribute on the controller in question.

ValidateInput is found in System.Web.MVC in MVC2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.