Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > General .NET
|
General .NET For general discussion of MICROSOFT .NET topics that don't fall within any of the other .NET forum subcategories or .NET language forums.  If your question is specific to a language (C# or Visual Basic) or type of application (Windows Forms or ASP.Net) try an applicable forum category. ** PLEASE BE SPECIFIC WITH YOUR QUESTION ** When posting here, provide details regarding the Microsoft .NET language you are using and/or what type of application (Windows/Web Forms, etc) you are working in, if applicable to the question. This will help others answer the question without having to ask.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the General .NET 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 September 24th, 2004, 07:22 AM
Registered User
 
Join Date: Sep 2004
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default What is Page_Init ??

Hi, i am curious about this Page_Init...
can anyone tell me what this is for ?? what is the difference from page_load???

thanks in advance...

 
Old September 25th, 2004, 01:03 AM
Friend of Wrox
 
Join Date: Jun 2004
Posts: 449
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to r_ganesh76
Default

The first method that is executed when a page is requested is the classes constructor. However, inside the constructor the controls defined inside your aspx pages would not have initalized. You will get the Initialized values

Page_Init fires before the Page_Load event. When the Page_Init event fires, the controls defined in your page will be initialized. But you will not get the values which have been changed in the postback (those changed by the user).

in the Page_Load event, You will be writing most of the code. But in most of the cases you will be checking the value of IsPostBack to avoid un-necessary exucution of the code

Regards
Ganesh





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





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