asp.net-mvc – MVC和RadioButtonList

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – MVC和RadioButtonList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试这样做,但这只显示无旁边的单选按钮。
<% 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>
<% } %>
原文链接:https://www.f2er.com/aspnet/253117.html

猜你在找的asp.Net相关文章