I'm getting errors with an application on our test web server, which has .NET 4.0 installed, when I input HTML into a form. I get the usual errors of:

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

This is being caused by the change in .NET 4.0 that disables switching off automatic validation for HTML input.

I can fix this on my local development machine by adding the directive to the section of my root web.config, and .NET then honours the directive that's in the same root web.config. Strangely, I needed to restart IIS on my local machine (which is version 5.1) for this change to work.

When I deploy the root web.config to our test server however, I'm still getting the validation errors. I've tried using run > iisreset, stopping and starting IIS (which is version 6.0 on the test server), and I've even restarted the server to fully clear out .NET. My application is definitely picking up the new root web.config (I've tested this), however the directive seems to just be ignored.

My application is configured as a .NET 4.0 application on both my local machine and on the test server. I've tried rebuilding the application and redeploying it to the test web server. Can anyone suggest what I need to do to get this working?

Thanks in advance, Chris

link|improve this question
For me its working on both development and product environment with out any problem. Maybe is something else that you have miss. – Aristos Aug 31 '10 at 5:18
feedback

2 Answers

Are you sure you are running your app under an app pool under 4.0? Or are you perchance running it in a virtual application/directory that is a child to a 2.0/3.5 app?

link|improve this answer
feedback

On our test server running IIS 6.0, adding the to the root web.config (to try to make the entry in the same root web.config take effect when running under the .NET 4.0 framework), doesn't work. If these entries are added to the web.config for an individual application, and the application is converted to .NET 4.0, then it works and automatic validation of HTML input is switched off. The directory and all parent directories of the application need to be configured as .NET 4.0.

link|improve this answer
stackoverflow has stripped out the web.config entry referred to in the title of this post (the httpruntime requestvalidation one) - it was supposed to be between the first 'the' and 'to'. Maybe the developers should read stackoverflow more often. – Chris Halcrow Sep 7 '10 at 4:53
First of all, you should be modifying your question rather than posting new answers to it. Secondly, you can easily keep tags by marking them as code: <httpRuntime requestValidationMode=“2.0” />. I don't think that the SO developers are to blame for your difficulties. – StriplingWarrior Oct 19 '10 at 22:36
feedback

Your Answer

 
or
required, but never shown

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