vote up 5 vote down star
2

I just want to know how to validate (or clean) user input in ASP.NET MVC so that an HttpRequestValidationException will not be thrown regardless of the values submitted. For example, with a text input, if the user inputs <BR/>, it will cause an exception and the Yellow Screen of Death will be shown. I don't want that. I want to catch the exception and to make visible an user friendly error in the current view, preferably with the controls loaded with the same values submitted.

I have found this http://www.romsteady.net/blog/2007/06/how-to-catch-httprequestvalidationexcep.html, but it is useless for my purpose. Also, I have found this http://msdn.microsoft.com/en-us/library/aa973813.aspx and tried to put inside a model binder but I couldn't make to work.

flag

5 Answers

vote up 5 vote down check

With the latest version of ASP.NET MVC (the RC, at the time of writing this) you can just put an attribute on either your controller class or your action method, e.g.:

[ValidateInput(false)]
public ActionResult create()
{
	// ...method body
}

The ValidateInputAttribute is in System.Web.Mvc.

But as others have said, you do then have to perform your own manual input validation or cleaning.

link|flag
It'd be so nice if ValidateInputAttribute would accept the name of a field (or a list of names), so that validation could be turned off selectively. All or nothing tends to suck, cause duplication of effort, and generally just makes things more troublesome. – Chris Charabaruk Nov 4 at 14:02
vote up 1 vote down

Put put ValidateRequest="false" to your aspx view declaration, but sanitize users input text inside your code, to avoid some xss attacks.

link|flag
Thanks, but I don't want to deactivate ValidateRequest on my aspx. – eKek0 Nov 2 '08 at 1:30
vote up 1 vote down

Instead of catching the error in the global.asax Application_Error, you could catch it by adding an error handler for the controller that explicitly catches this error and redirects to the view with an error message and appropriate view data.

I found this, somewhat old, post on how to do this with attributes.

link|flag
Thanks, I will try it for now – eKek0 Nov 2 '08 at 1:35
vote up -1 vote down
alert();
link|flag
vote up 0 vote down

ValidateInputAttribute is the proper method for disabling request validation. Declarative method within view (aspx) doesn't work because controller is responsible for receiving request (not view/aspx).

link|flag

Your Answer

Get an OpenID
or

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