码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET MVC ModelState

时间:2014-08-15 14:25:08      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   log   new   

添加一个模型状态:

ModelState.Add("IamKey", new ModelState { 
                Value = new ValueProviderResult("", "HelloKey,IamValue", System.Globalization.CultureInfo.CurrentUICulture) });

清除一个模型错误:

ModelState["Item"].Errors.Clear();

 自定义模型信息:

ModelState["hello"].Value = new ValueProviderResult("a", m.Name, CultureInfo.CurrentCulture);
ModelState.AddModelError("hello", "should be \"a\"");

 

ASP.NET MVC ModelState,布布扣,bubuko.com

ASP.NET MVC ModelState

标签:style   blog   color   io   ar   div   log   new   

原文地址:http://www.cnblogs.com/ibgo/p/3914724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!