I finally figured out how to use Visual Studio .Net the way I wanted to with this web page. My code for this radio button is: <tr>
<td height="42" align="right" valign="top" bgcolor="#e8e8e8"><font face="MS Sans Serif, Arial" size="2" color="#000000"><strong><nobr>
Show Email Address?</nobr></strong></font></td>
<td colspan="2" valign="top" bgcolor="#e8e8e8">
<p>
<asp:RadioButtonList id="radShowEmail" runat="server" Columns="30" RepeatLayout="Flow">
<asp:ListItem Value="0" Selected="True">Yes</asp:ListItem>
<asp:ListItem Value="1">No</asp:ListItem>
</asp:RadioButtonList>
</p>
</td>
</tr>
There's no error mesage now. But it is still not displaying the radio buttons. I want the yes radio button and no radio button to be on the same line. Maybe I'm missing something in my code.