发布网友 发布时间:2022-04-26 19:57
共1个回答
热心网友 时间:2023-10-26 10:05
一样的用法啊。
<table>
<TR>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
<td>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</td>
</TR>
</table>
或许楼主想问的是后台添加吗?
可以这样
<table>
<tr>
<td runat="server" id="td1"></td>
</tr>
</table>
td1.Controls.Add();
Controls.Add();方法
可以添加任何你想要的服务器控件
希望LZ顺利。