在ASP.net网站项目中,我在App_code文件夹中有一个名为“abc”的类,并且在根MyControl / Menu.ascx上的文件夹中具有用户控件。
现在我的问题是如何在“abc”类中创建UserControl的实例?因为无法访问UserControl。
答案 0 :(得分:1)
试试这个
CustomControl cc = (CustomControl)Page.LoadControl("...");
答案 1 :(得分:0)
包含适当的namespace
用户控件
using YourNamespace;
然后创建你的控制实例
UserControlClass userconrtolinstance = new UserControlClass();