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 ?
I am assuming you are getting