table表格怎么添加相关服务器
发布时间: 2022-11-30 07:29:54
Ⅰ c#中怎样在Table表格中添加相关的服务器控件
一样的用法啊。
<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顺利。
Ⅱ 在同一网内,如何将A服务器的table导入到B服务器的table
看你用的什么DB了,一般DB都有配套的数据迁移工具,只要将两个DB连上网,配置下迁移工具,就可以了。可以选择迁移,也可以在不同的DB类型之间迁移。
热点内容