验证没有发生Asp.net MVC2

时间:2011-09-21 17:52:36

标签: asp.net-mvc-2

验证没有发生Asp.net MVC2,我使用ckeditor控件,为什么提到“[ValidateInput(false)]”

控制器

[AcceptVerbs(HttpVerbs.Post)]
[ValidateInput(false)] 
public ActionResult Create(EventInfo EventInfo)
{
    //
}

模型

[Required(ErrorMessage = "Title is required")]
[StringLength(250, ErrorMessage = "Maximum 250 Characters")] 
public string TITLE { get; set; }

我该如何解决这个问题。

1 个答案:

答案 0 :(得分:2)

你可能要求

if (!ModelState.IsValid)
    return View(EventInfo);