basically i wish to random the item display in dropdownlist ,any function can work with it?
output
a
b
c
expected output (can be any but not only abc)
b
a
c
OR
c
a
b
OR
any
asp:Label ID="Label3" Text=' <%#DataBinder.Eval(Container.DataItem, "Question")%> ' Runat="server"
Select * from (SELECT [r1] AS [Option] FROM [ExerciseTable] WHERE ([Question] = @Question)
UNION SELECT [r2] AS [Option] FROM [ExerciseTable] WHERE ([Question] = @Question) UNION
SELECT [r3] AS [Option] FROM [ExerciseTable] WHERE ([Question] = @Question AND
[r3]!=null))t Order by Newid()"