如何使用 C# 从服务器端使用用户控件加载多个内容占位符。
目前从服务器端(在 page_load 中)我正在加载一个用户控件,如下所示:
ContentPlaceHolder cph = this.Master.FindControl("TopContentPlaceHolder") as ContentPlaceHolder;
UserControl uc = this.LoadControl("~/webusercontrols/topmenu.ascx") as UserControl;
if ((cph != null) && (uc != null))
{
cph.Controls.Add(uc);
}
我需要在我的页面中加载 8 个用户控件。我怎样才能达到同样的效果?提前致谢..