I have a RadioButtonList like this:
<asp:RadioButto nList ID="lstReportTy pe" runat="server">
<asp:ListItem Selected="True"
Value="CompanyC heck">Text 1</asp:ListItem>
<asp:ListItem Value="CompanyS tandard">Text 2</
asp:ListItem>
<asp:ListItem Value="CompanyE xtended">Text 3</
asp:ListItem>
</asp:RadioButton List>
I need to change the text of the ListItems from the code behind file.
How can that be done?
Very grateful for reponse!
// S
<asp:RadioButto nList ID="lstReportTy pe" runat="server">
<asp:ListItem Selected="True"
Value="CompanyC heck">Text 1</asp:ListItem>
<asp:ListItem Value="CompanyS tandard">Text 2</
asp:ListItem>
<asp:ListItem Value="CompanyE xtended">Text 3</
asp:ListItem>
</asp:RadioButton List>
I need to change the text of the ListItems from the code behind file.
How can that be done?
Very grateful for reponse!
// S
Comment