Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个 ASP.net 网站项目中,我在 App_code 文件夹中有一个名为“abc”的类,并且在根 MyControl/Menu.ascx 的文件夹中有用户控件。
现在我的问题是如何在“abc”类中创建我的 UserControl 实例?因为 UserControl 不可访问。
试试这样
CustomControl cc = (CustomControl)Page.LoadControl("...");
包括适当namespace的用户控件
namespace
using YourNamespace;
然后创建 uer 控件的实例
UserControlClass userconrtolinstance = new UserControlClass();