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 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();
            }
        }
share|improve this question
1  
Just to cover all bases, the ValidateInput(false) is on the POST method, correct? – Mayo May 9 '11 at 12:53
yep, on the post method – AndyC May 9 '11 at 13:01
i'm sorry, i think you're not quite getting the FormCollection thing. 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 the Formcollection – Stefanvds May 9 '11 at 13:26
1  
When using MVC3 you can not use FormCollection when using [AllowHtml]. you then should use your News news – Stefanvds May 10 '11 at 8:04

4 Answers

You need to place this on top of your [HttpPost] action method

    [HttpPost]
    [ValidateInput(false)]
    public ActionResult Edit(FormCollection collection) {
       .....
    }

If you are using MVC3 then you should't use [ValidateInput(false)] but use [AllowHtml] which is explained here: http://davidhayden.com/blog/dave/archive/2011/01/16/AllowHtmlAttributeASPNETMVC3.aspx

also: try putting [ValidateInput(false)] above your [HttpPost] not under, As I remember, these get executed top to bottom.

share|improve this answer
i have [ValidateInput(false)] added, does it matter that I don't have FormCollection as a param though? – AndyC May 9 '11 at 13:01
can you edit your post with the whole action method? try adding a FormCollection. it might just help. – Stefanvds May 9 '11 at 13:15
@stefanvds sure, just posted the edit now. – AndyC May 9 '11 at 13:20
try putting [AllowHtml] on top of your NewsBody. what version of MVC do you run? you need to place the [AllowHtml] where you define your News object, on the NewsBody property. did you not forget to build? – Stefanvds May 9 '11 at 13:28
can you also show us your get method? – Stefanvds May 9 '11 at 13:29
show 12 more comments

In MVC 3, Add [AllowHtml] to the property in the view model that you want to not be validated.

share|improve this answer

The general rule of thumb is that you will get that error when posting to an action method that does not allow potentially dangerous form values. If you take that into consideration along with the fact that you have obviously chosen to allow such values on a given action method, you must conclude that you are somehow posting to a different action method.

Can you try posting a standard string (i.e. "hello") without WMD and checking to see if your breakpoints in the selected action method are reached?

share|improve this answer

In the web.config file, within the tags, insert the httpRuntime element with the attribute requestValidationMode="2.0". Also add the validateRequest="false" attribute in the pages element.

Example:

<configuration>
  <system.web>
   <httpRuntime requestValidationMode="2.0" />
  </system.web>
  <pages validateRequest="false">
  </pages>
</configuration>
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.