【发布时间】:2016-02-09 23:46:38
【问题描述】:
这是我的代码
<asp:RadioButtonList ID="rbtnlistProgramPlans" runat="server" Font-Names="Tahoma"
Font-Size="Small" ForeColor="White" RepeatColumns="3"
style="position: relative; top: -775px; left: 0px; width: 688px;"
BorderStyle="None">
<asp:ListItem Text="Practical Monthly Plan" Value="0">Monthly</asp:ListItem>
<asp:ListItem Text="Practical 3 Month's Plan" Value="1">3 Month's</asp:ListItem>
<asp:ListItem Text="Premium Monthly Plan" Value="2">Monthly</asp:ListItem>
<asp:ListItem Text="Premium 3 Month's Plan" Value="3">3 Month's</asp:ListItem>
<asp:ListItem Text="Elite Monthly Plan" Value="4">Monthly</asp:ListItem>
<asp:ListItem Text="Elite 3 Month's Plan" Selected="True" Value="5">3 Month's</asp:ListItem>
</asp:RadioButtonList>
我的问题是我想将ListItem Text 存储到数据库中。如果用户单击单选按钮,则相应的描述应该存储请帮助我
【问题讨论】:
-
你能解释清楚吗?
-
请解释更多。您希望在单击按钮或单选按钮本身的选择更改时发生这种情况?
标签: c# .net asp.net radiobuttonlist