我想用带有多项选择单选按钮的数据列表视图提出一些问题,那么如何从列表中获取每个问题的答案或选中的单选按钮值?
问问题
794 次
1 回答
0
protected void btnSave_Click(object sender, EventArgs e)
{
foreach (RepeaterItem item in Repeater1.Items)
{
// Checking the item is a data item
if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
{
var rdbList = item.FindControl("RadioButtonList1") as RadioButtonList;
// Get the selected value
string selected = rdbList.SelectedValue;
}
}
}
试试这个,让我知道
于 2013-08-23T06:11:47.597 回答