Miracle ·
·
阅读: 601
以下是我测试通过的代码,你可以参照修改
public class BasePage: Page
{
protected override void OnInit(EventArgs e)
{
base.OnInit (e);
PlaceHolder pc = new PlaceHolder();
this.Controls.Add(pc);
Control c = this.LoadControl("~/BasePage/myUserCtrl.ascx");
pc.Controls.Add(c);
}
}