我有一个radiobuttonlist,包括两个单选按钮,价格折扣,另一个是百分比折扣。 aspx文件的代码片段如下:
<td class="style8">
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
<asp:ListItem Value="1">Price Discount</asp:ListItem>
<asp:ListItem Value="2">Percent Discount</asp:ListItem>
</asp:RadioButtonList>
</td>
答案 0 :(得分:0)
尝试这样做
RadioButtonList1.SelectedValue
返回您在aspx代码中声明的整数(1或2) 如果选择价格折扣然后返回选择百分比的1,则返回2.
<asp:ListItem Value="1">Price Discount</asp:ListItem>
<asp:ListItem Value="2">Percent Discount</asp:ListItem>
答案 1 :(得分:0)
你可以通过两种方式实现这一目标。
1. If you want to select radio button by your value then you can write
RadioButtonList1.SelectedValue
2.If you want to select radio button by your Item then you can write
RadioButtonList1.SelectedItem
答案 2 :(得分:0)
我们可以获得RadioButtonList SelectedIndex,SelectedItem和SelectedValue
SelectedIndex:获取或设置列表中所选项目的最低序号索引。
RadioButtonList1.SelectedIndex
SelectedItem:获取列表控件中索引最低的所选项目。
RadioButtonList1.SelectedItem
SelectedValue:获取列表控件中所选项的值,或选择列表控件中包含指定值的项。
RadioButtonList1.SelectedValue
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.radiobuttonlist%28v=vs.110%29.aspx