I have a form with the wmd editor on it. The input text area is rendered using:
<%: Html.TextAreaFor(t => t.NewsBody, new{@class="wmd-panel", id="wmd-input"}) %>
Every time I submit the form I get A potentially dangerous Request.Form value was detected from the client
I tried setting [ValidateInput(false)] on the action method, I tried adding
<httpRuntime requestValidationMode="2.0" /> to the web.config and I've tried validateRequest="false" in the pages directive in web.config but it's still happening.
Any ideas?
Edit
Action method:
[ILFFAuthorize(Roles = "Admin")] // this is a custom auth attrobite
[HttpPost]
[ValidateInput(false)]
public ActionResult AddNews(FormCollection col){
//public ActionResult AddNews(News news)
//{
if (ModelState.IsValid)
{
News news = new News();
news.NewsDate = DateTime.Now;
news.NewsPosterId = 0;
news.NewsTitle = col["NewsTitle"];
news.NewsBody = col["NewsBody"];
newsRepository.Add(news);
newsRepository.Save();
return RedirectToAction("Index", "Home");
}
else
{
return View();
}
}

FormCollectionthing. MVC adds this automatically when generating an action Method for you. this FormCollection contains ALL postback material. you can easily do this:public ActionResult AddNews(FormCollection col, News news){although that doesnt fix your problem. and when you dont need anything besides the news, you probably can remove theFormcollection– Stefanvds May 9 '11 at 13:26FormCollectionwhen using[AllowHtml]. you then should use yourNews news– Stefanvds May 10 '11 at 8:04