日期:2014-05-18  浏览次数:20387 次

同行显示
如何将RadioButtonList控件和TextBox控件在同一行显示

------解决方案--------------------
<div>
<table>
<tr>
<td>
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
</asp:RadioButtonList>
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
</table>
</div>

这样可以 但不知是否满足你的要求