I have a textbox in a web form where an admin user can add HTML to be submitted for entry into the database.

In the past, I've always added ValidateRequest="false" to the Page when submitting HTML data to avoid validation error. However, with this website, even with ValidateRequest set to false, I'm getting the following error:

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

I've heard this is to do with .NET 4 security, but this is an ASP.NET 3.5 application.

Why am I still getting this error?

link|improve this question

what are you actually posting? – Emmanuel N Nov 8 '11 at 15:16
<div><object /></div> – Curt Nov 8 '11 at 15:18
why dont you encode it ? – Royi Namir Nov 8 '11 at 15:21
This is webforms right, and not MVC? – James Johnson Nov 8 '11 at 15:46
@JamesJohnson Indeed. Retagged. – Curt Nov 8 '11 at 16:22
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

RequestValidation has significant changes in .Net 4.0.

Take a lot at: http://msdn.microsoft.com/en-us/library/system.web.configuration.httpruntimesection.requestvalidationmode(VS.100).aspx

To solve your problem you have to set requestValidationMode to a value less than 4.0 in httpRuntime in weh.config like this:

<httpRuntime requestValidationMode="2.0" />
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.