I am creating a radio button list in the back end of the system. Is there any method that let me display items with random order ?
My Code :
<asp:radiobuttonlist id="RadioButtonList1" runat="server"
TextAlign="Right" CellPadding="10" RepeatLayout="Table"
CausesValidation="True" CssClass="radioAnswers" ClientIDMode="Static"></asp:radiobuttonlist>
c#
RadioButtonList1.Items.Add(New ListItem(rsQuestion("a"), "A"))
RadioButtonList1.Items.Add(New ListItem(rsQuestion("b"), "B"))
RadioButtonList1.Items.Add(New ListItem(rsQuestion("c"), "C"))
RadioButtonList1.Items.Add(New ListItem(rsQuestion("d"), "D"))