バリデーション - ModelStateを直接操作する

エラーをクリアする

 [HttpPost]
 public ActionResult foo(MyViewModel vm){
     if (vm.age > 100) {
         vm.age = 100
         ModelState["age"].Errors.Clear();
     }
 }

参考

http://stackoverflow.com/questions/2883630/asp-net-mvc-modelstate-isvalid-returning-false

参考

http://stackoverflow.com/questions/7424003/mvc3-remove-modelstate-errors


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2014-02-18 (火) 07:48:39