如何在mvc2中实现OnValidate方法?我正在阅读一篇文章,其中显示了onvalidate方法,但我在visual studio 2008中找不到?
答案 0 :(得分:0)
我还没有在ASP.NET MVC中看到过OnValidate()方法。您可能已经在LINQ-to-SQL中看到了验证机制。
在ASP.NET MVC中,我通常会检查验证:
public ActionResult Update(SomeModel viewModel)
{
if (!ModelState.IsValid)
return View("Edit", viewModel);
// some update code...
PutTempMessage("data updated.");
return View("Edit", viewModel);
}