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