加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net-mvc – MVC和RadioButtonList

发布时间:2020-12-16 00:45:45 所属栏目:asp.Net 来源:网络整理
导读:我尝试这样做,但这只显示无旁边的单选按钮。 % foreach (string s in Html.RadioButtonList("rbl")) {% % =s %% } % 解决方法 Elijah Manor写了ASP.NET MVC 1.0中相同的麻烦: ASP.NET MVC Html.RadioButtonList Blues 他决定循环他的DataSource并创建单独
我尝试这样做,但这只显示无旁边的单选按钮。
<% foreach (string s in Html.RadioButtonList("rbl")) {%>
    <% =s %>
<% } %>

解决方法

Elijah Manor写了ASP.NET MVC 1.0中相同的麻烦:

ASP.NET MVC Html.RadioButtonList Blues

他决定循环他的DataSource并创建单独的Html.RadioButton和Label组合。

<!-- After using and looking at the code for the Html.RadioButtonList in the ASP.NET MVC 1.0 RTM codebase,I'm not sure how it is supposed to be useful. It only outputs the actual input radio button and doesn't render any corresponding labels. To get around this I ended up writing a foreach creating individual Html.RadioButton and labels -->
<%
var radioButtonList = new SelectList(new List<ListItem> {
    new ListItem { Text = "Current",Value="false",Selected=true },new ListItem { Text = "Other",Value="true"}},"Value","Text","false");
var htmlAttributes = new Dictionary<string,object> {
    { "class","radioButtonList" },{ "onclick","if(eval(this.value)) { $('#tblDate').show('slow'); } else { $('#tblDate').hide('slow'); }" }
};
foreach (var radiobutton in radioButtonList) { %>
    <%=Html.RadioButton("rblDate",radiobutton.Value,radiobutton.Selected,htmlAttributes)%>
    <label><%=radiobutton.Text%></label>
<% } %>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读