I'm not sure where to start on this one, looking for a push in the right direction. I'm using C#. I need to display three questions to a user but the kicker is I need those questions to be randomly picked and displayed on each page load. I can use MS SQL if your solution deems it to be the easiest method.
I have a list of 10 questions I want three to show at a time and have them randomly picked. What is the best way to do this?
It currently is setup like this..
<p> <label class="checkbox"><asp:CheckBox ID="QuesChk1" Value="1" Text="What street do they live on?"
runat="server" /></label></p>
<p> <label class="checkbox"><asp:CheckBox ID="QuesChk2" Value="2" Text="What is their middle name?"
runat="server" /></label></p>
<p> <label class="checkbox"><asp:CheckBox ID="QuesChk3" Value="3" Text="What branch do they visit the most?"
runat="server" /></label></p>
<asp:Button ID="Button1" OnClick="Next_Click" runat="server" Text="Next" />