Wrox Programmer Forums
|
ASP.NET 1.1 As of 10/6/2005, this forum is locked as part of the reorganization described here: http://p2p.wrox.com/topic.asp?TOPIC_ID=35394. No posts have been deleted. Open ongoing discussions from the last week have been moved to either ASP.NET 1.0 and 1.1 Beginners http://p2p.wrox.com/asp-net-1-0-1-1-basics-60/ or ASP.NET 1.0 and 1.1 Professional. http://p2p.wrox.com/forum.asp?FORUM_ID=50. See my sticky post inside for more.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.1 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 26th, 2005, 05:39 AM
Authorized User
 
Join Date: May 2005
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default Page_Init use

In most of code behind pages i see the constructor with page_int initializer e.g.web page is ProjectEntry.aspx then in ProjectEntry.aspx.cs

public ProjectEntry()
{
     Page.Init += new System.EventHandler(Page_Init);
}
private void Page_Load(object sender, System.EventArgs e)
{
  // Put user code to initialize the page here
}

private void Page_Init(object sender, EventArgs e)
{
            InitializeComponent();
}


What is its use and its advantage ?
is it a good practice or bad to use it

 
Old June 1st, 2005, 06:53 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

page init fires earlier in the page lifecycle. Some properties of the page may not be available at that point in the cycle. It is used by the visual studio designer and usually control events are wired there.

-Peter





Similar Threads
Thread Thread Starter Forum Replies Last Post
Capturing Button Click in Page_Init? jlrolin ASP.NET 1.0 and 1.1 Professional 3 February 22nd, 2007 03:38 PM
Difference Between Page_init and Page_load Preeti_Singh .NET Framework 1.x 1 February 7th, 2007 10:18 AM
What is Page_Init ?? cybercross General .NET 1 September 25th, 2004 01:03 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.