[阅读: 581] 2004-12-31 09:02:44
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);
}
}