如何在.NET中枚举radiobuttonlist?
答案 0 :(得分:3)
foreach (ListItem item in RadioButtonList1.Items)
{
if (item .Selected == true)
{
Response.Write("You selected " + rbtn.Text);
}
}
答案 1 :(得分:0)
枚举其Items collection。
答案 2 :(得分:0)
不确定你在这里问的是什么 - 但如果你只是想通过这些项目进行枚举,那就......
foreach (var item in MyRbl.Items)
{
// do something with the current item.
}
如果您想获取该值,请使用.SelectedValue
如果您尝试在客户端执行以获取所选值 - 您可以使用jQuery来获取所选值...
var selected = jQuery('#<%= MyRbl.ClientID %> input:checked').val();
答案 3 :(得分:0)
RadioButtonList.Items是一个实现IEnumerable的ListItemCollection。