在网站项目中,如果我将用户控件的引用添加到页面或控件的标记中,如下所示:
<%@ Reference Control="~/controls/myUserControl.ascx" %>
然后我可以使用自动生成的ASP
命名空间以编程方式从代码隐藏创建该控件的实例:
ASP.controls_myUserControl_ascx myControlInstance =
new ASP.controls_myUserControl_ascx();
但是,在Web 应用程序项目中,出现编译错误。MSDN 上的此评论表明它在 Web 应用程序项目中不起作用,但没有提出替代方案。
我可以创建一个存在于用户控件后面的类的实例,如下所示:
MyWebApplication.controls.myUserControl myControlInstance
= new MyWebApplication.controls.myUserControl();
但这不包括 .ascx 文件中的标记(或任何服务器端控件),所以这没有用。
我可以实例化一个包含标记的控件,如下所示:
MyWebApplication.controls.myUserControl myControlInstance
= LoadControl("~/controls/myUserControl.ascx")
as MyWebApplication.controls.myUserControl;
这让我可以访问所有属性并且似乎工作得很好。但是,当我可以在不同的项目类型中使用强类型类时,从其字符串路径加载控件似乎有点讨厌。
所以,我的问题是:有没有更好的方法在 Web 应用程序项目中以编程方式创建用户控件?还是我被困住了LoadControl
?