Control.Load 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当服务器控件加载到 Page 对象中时发生。
public:
event EventHandler ^ Load;
public event EventHandler Load;
member this.Load : EventHandler
Public Custom Event Load As EventHandler
事件类型
示例
// This is the constructor for a custom Page class.
// When this constructor is called, it associates the Control.Load event,
// which the Page class inherits from the Control class, with the Page_Load
// event handler for this version of the page.
public MyPage()
{
Load += new EventHandler(Page_Load);
}
' This is the constructor for a custom Page class.
' When this constructor is called, it associates the Control.Load event,
' which the Page class inherits from the Control class, with the Page_Load
' event handler for this version of the page.
Public Sub New()
AddHandler Load, AddressOf Page_Load
End Sub
注解
通知服务器控件执行设置为在每个页面请求上发生的任何处理步骤。 可以从此事件访问视图状态信息和 Web 窗体 POST 数据。 还可以访问页面控件层次结构中的其他服务器控件。
注意
如果在事件期间 Page_Load
在控件中设置自定义模板,则自定义模板中子控件的文本值将丢失。 发生这种情况的原因是窗体值已加载。