当前位置: 代码迷 >> ASP.NET >> 同行显示解决思路
  详细解决方案

同行显示解决思路

热度:4134   发布时间:2013-02-25 00:00:00.0
同行显示
如何将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>

这样可以 但不知是否满足你的要求
  相关解决方案