读书人

同行显示解决思路

发布时间: 2012-04-16 16:20:04 作者: rapoo

同行显示
如何将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>

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

读书人网 >asp.net

热点推荐