首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

同行显示解决思路

2012-04-16 
同行显示如何将RadioButtonList控件和TextBox控件在同一行显示[解决办法]divtabletrtdasp:RadioB

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

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

热点排行