IMG-LOGO

A potentially dangerous Request.Form value was detected from the client when submitting html content in ASP.Net MVC.

andy - 02 Jan, 2014 5394 Views 0 Comment

You may get this error message A potentially dangerous Request.Form value was detected from the client when you try to submit a html content on your site. By default validation input is turned on, this is used to reduce the possibility hack or attack on your site. When you decide to disable this make sure it is only apply to the specific page of your site.

How to solve this issue in MVC?

To solve this issue is pretty simple, in your controller action view, you just need to set the ValidationInput to false. See below example.

[HttpPost]
[ValidateInput(false)]
public ActionResult SubmitContent(string value) {

}

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

ASP.Net MVC Identity without Entity Framework

Learn how to create your own custom identity authentication and authorization with ASP Net MVC without using Entity Framework By default the example given in the MVC official tutorial site is using Entity Framework So if you do not want ...

How to enable attribute routing in C# MVC?

p If you want to enable routing in C MVC you have to do the following steps Note this only applies to strong MVC version 5 or above strong Open your RouteConfig cs file under App_Start folder in your MVC ...

PayPal Express Checkout using C# MVC Web API

p In this tutorial you will learn how easily you can implement a simple checkout express using C MVC Web API We will create a really simple shopping cart where customers can add and delete their cart items before proceed ...