Hello I have this table with 2 radio buttons to answer a yes or no question. If neither buttion is clicked when the page is submitted, I would like some type of message box to pop up telling the user they have to make a choice before they can go to the next page. What is the best way to do that? I'm not sure if I should use some type of vb validation or just a pop up box or something. Here is the table with the 2 radio buttons.
<table style="width:100%;">
<tr>
<td class="auto-style2">
<asp:RadioButton ID="RadioButton1" GroupName="rreview" runat="server" Text="Yes, I agree to participate" />
</td>
</tr>
<tr>
<td class="auto-style2">
<strong>OR</strong></td>
</tr>
<tr>
<td class="auto-style2">
<asp:RadioButton ID="RadioButton2" GroupName="rreview" runat="server" Text="No, I choose not to participate" />
</td>
</tr>
</table>