2011-07-22 79 views
3

我的問題是,我想存儲在數據庫實用月度計劃按我的要求,我必須顯示月度和3 Month's Plan在網絡表單,請幫助我,我需要用C#單選按鈕列表在Asp.net

RadioButtonList ID="rbtnlistProgramPlans" runat="server" 
     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 

每月代碼和3個月的顯示在網頁表單的用戶,但我想它存儲RadioButtonList的選擇了文本=「實用月費計劃」 ..就像幫助我 我新的asp.net

回答

1

在單選按鈕列表您當前的列表項是

<asp:ListItem Text="Practical Monthly Plan" Value="0">Monthly</asp:ListItem> 

,但它應該是這樣......

<asp:ListItem Text="Practical Monthly Plan" Value="0"></asp:ListItem> 

爲起始<asp:ListItem> and </asp:ListItem>之間的文本認爲是顯示文本和override Text property of listitem

1

代碼例如:

<asp:RadioButtonList id=RadioButtonList1 runat="server"> 
     <asp:ListItem Text="Practical Monthly Plan" Value="1"></asp:ListItem> 
     <asp:ListItem Text="Practical 3 Monthly Plan" Value="3"></asp:ListItem> 
     <asp:ListItem Text="Practical X Monthly Plan" Value="X"></asp:ListItem> 
</asp:RadioButtonList> 

more info from Microsoft