Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using ASP.net MVC 2.0 , i have used a textarea on my View like

<%= Html.TextAreaFor(m => m.Description, 7, 35, new { @class = "bg_area normal" })%>

it shows me an exception while submitting the form after input html data like

<p><b> hello world ! </b></p> 

is there any way to accept such kind of data using textarea ?

Is there any way to handle it from one place or, i have to add

[ValidateInput(false)]

to each action ?

share|improve this question

2 Answers

up vote 2 down vote accepted

I am assuming you are getting

A potentially dangerous Request.Form value was detected from the client... exception. IF this is the case then you need to decorate your action result with

[ValidateInput(false)]
share|improve this answer
1  
If you are using .Net 4 the, apparently, you will also need to set <httpRuntime requestValidationMode="2.0"/> – Steve Martin Feb 10 '12 at 14:44
Thanks its working now. – Gaurav Mishra Feb 10 '12 at 15:10

If you want to post HTML to a Controller method you need to add the [ValidateInput(false)] attribute to your controller method.

Here is the MSDN documentation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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