首页 > Web开发 > 详细

MVC中使用RadioButtonFor

时间:2015-05-22 13:21:20      阅读:141      评论:0      收藏:0      [点我收藏+]

1 进行初始化

<%=Html.RadioButtonFor(model => model.TypeState, 0, new { @id = "radio2", @name = "rdolstState" })%>启用                                                                  
<%=Html.RadioButtonFor(model => model.TypeState, 1, new { @id = "radio1", @name = "rdolstState",@checked=true })%>禁用

注意:htmlAbrritbutes属性的使用  “new{…………………………  }”;

2 编辑时,绑定值,根据数据显示RadioButtonFor选中状态

<%=Html.RadioButtonFor(model => model.TypeState, 0, new { @id = "radio2", @name = "rdolstState" })%>启用                                                                  
<%=Html.RadioButtonFor(model => model.TypeState, 1, new { @id = "radio1", @name = "rdolstState" })%>禁用  

说明:当数据中“TypeState”是0时,这第一条会显示被选中,反之,就是第二条显示选中。

MVC中使用RadioButtonFor

原文:http://www.cnblogs.com/tinya/p/4521888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!