D
DDK
Does anyone know why : this.Load += new
System.EventHandler(this.Page_Load); gets deleted from the
InitializeComponent()
I've been finding that this is missing from some of my pages, which makes
the pages not work correctly or else unsecure. Any ideas why.
Thanks,
d.
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
System.EventHandler(this.Page_Load); gets deleted from the
InitializeComponent()
I've been finding that this is missing from some of my pages, which makes
the pages not work correctly or else unsecure. Any ideas why.
Thanks,
d.
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion