在这个动态加载用户控件的示例中,如何声明“TimeDisplay”?这可以在后面的代码中完成,还是在 ascx 页面中完成?这是一本书的一个例子,我猜有关于代码文件相对于彼此的位置的假设?
protected void Page_Load(object sender, EventArgs e)
{ TimeDisplay ctrl = (TimeDisplay)Page.LoadControl("TimeDisplay.ascx");
PlaceHolder1.Controls.Add(ctrl);
}