Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案

View:
<%=Html.CheckBox("IsBirthday","我是否过生日", item.IsBirthday)%>
Controller:
Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案AUser user = new AUser();
Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案BindingHelperExtensions.UpdateFrom(user, Request.Form);
Model:
Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案public class AUserAsp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案{
Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案    
public bool IsBirthdayAsp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案{get;set;}
Asp.net MVC P2 中无法正确获取 CheckBox值的bug的解决方案}

这样会发生无法从View中获取到IsBirthday值的情况
查了许多MS只能以以下方法解决
Controller:
AUser user = new AUser();
BindingHelperExtensions.UpdateFrom(user, Request.Form);
user.IsBirthday
= Request.Form["IsBirthday"]=="true";
View:
<%=Html.CheckBox("IsBirthday","我是否过生日","true", item.IsBirthday)%>


Over
同是学习,如果大家发现其它Bug欢迎交流.

上一篇:安装Python


下一篇:visual studio2010 C# office高级应用