我想从后面的代码中注册(或引用)并以编程方式处理 UserControl。我搜索了很多,但没有找到注册或引用 UserControl 的有用解决方案。
编辑:
我做了如下:
ASPX 页面:
<%@ Reference Control="~/ucContents.ascx" %>
ASPX 页面后面的代码:
Control Contents1 = null;
try
{
Contents1 = LoadControl("~/ucContents.ascx");
if (Contents1 != null)
{
((ucContents)Contents1).CatID = Request.QueryString["catid"];
}
}
catch
{ }
我想知道是否可以动态地在''code behind''处进行参考工作(<%@ Reference Control="~/ucContents.ascx" %>)?