S
staeri
I have a RadioButtonList like this:
<asp:RadioButtonList ID="lstReportType" runat="server">
<asp:ListItem Selected="True"
Value="CompanyCheck">Text 1</asp:ListItem>
<asp:ListItem Value="CompanyStandard">Text 2</
asp:ListItem>
<asp:ListItem Value="CompanyExtended">Text 3</
asp:ListItem>
</asp:RadioButtonList>
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:RadioButtonList ID="lstReportType" runat="server">
<asp:ListItem Selected="True"
Value="CompanyCheck">Text 1</asp:ListItem>
<asp:ListItem Value="CompanyStandard">Text 2</
asp:ListItem>
<asp:ListItem Value="CompanyExtended">Text 3</
asp:ListItem>
</asp:RadioButtonList>
I need to change the text of the ListItems from the code behind file.
How can that be done?
Very grateful for reponse!
// S