I am using Asp .net repeater and binding the selected value in the RadioButton list.
For example -
<asp:RadioButtonList ID="RadioButtonList1" runat="server" SelectedValue='<%# Eval("Numbers") %>'>
<asp:ListItem Value=“1” Text=“First”></asp:ListItem>
<asp:ListItem Value=“2” Text=“Second” ></asp:ListItem>
<asp:ListItem Value=“3” Text=“Third” ></asp:ListItem>
</asp:RadioButtonList>
So, I am getting the selected item when page loads but I want to hide other items which are no selected from that list when page loads.