Disabling request validation in ASP.NET Web Pages
by johna | November 27, 2019 | ASP.NET Web Pages
Disabling request validation in ASP.NET Web Pages
If you are developing ASP.NET Web Pages (not Web Forms or MVC) and you need to allow users to submit HTML or HTML-like content in input boxes you will find that the methods to avoid the A potentially dangerous Request.Form value was detected from the client error that work for ASP.NET Web Pages and MVC don't work for ASP.NET Web Pages.
For Web Pages you need to change the way you retrieve the submitted data and use the Request.Unvalidated() method.
These are the methods for retrieving submitted values and how you should change them to allow HTML data:
Request["key"] //will not allow HTML
Request.Unvalidated("key") //will allow HTML
Request.Form["key"] //will not allow HTML
Request.Unvalidated().Form["key"] //will allow HTML
Request.QueryString["key"] //will not allow HTML
Request.Unvalidated().QueryString["key"] //will allow HTML
If you are using ASP.NET Web Forms you can make a change in the web.config and/or indivudual pages to allow HTML values to be submitted.
On the individual page level you can add validateRequest="false" to your <@ Page ... %> directive in your .aspx file(s).
If targetting .NET framework 4 you will also need to add <httpRuntime requestValidationMode="2.0" /> to the system.web section of the web.config file:
You can also disable request validation for all pages by adding <pages validateRequest="false" /> to the system.web section of the web.config file.
eg.
<configuration>
<system.web>
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false" />
</system.web>
</configuration>
Related Posts
ASP.NET Web Pages cshtml files not recompiling on server
by johna | August 18, 2020
I have an old website written in ASP.NET v4.x Web Pages v1.0.0.0 and when I upload changes to my shared hosting provider some cshtml files update fine and I can see the changes, but some do not.
Using WebMatrix.Data in ASP.NET Web Forms
by johna | July 17, 2013
ASP.NET Web Pages has a simple to use Namespace that help you open, query and send commands to a database, and to work with rows that are returned by SQL queries.
Installing ASP.NET Web Pages Helpers in Visual Web Developer 2010
by johna | May 21, 2011
Comments
There are no comments yet. Be the first to leave a comment!