0

我在 asp.net 项目中创建了 web 用户控件,我想在表单中添加动态 web 用户控件,如何在数据表中动态 web 用户控件

4

1 回答 1

1

您可以使用LoadControl()方法

例子 :

Control CT = LoadControl("Control Path");
PlaceHolder1.Controls.Add(CT);
于 2012-09-29T09:52:24.563 回答