473,385 Members | 1,478 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Page Load event is called....

When I navigate to the next page using
Response.Rediect("MyNextPage.aspx") current page Page_Load event is called.
What I may wrongly understood is that post back will happen whenever there
is any server side event happens, resulting in Page_load event. Page_Load is
also happening when I navigate to the next page. That means Page_load will
always happen when I navigate to the next page. Please correct me If I have
totally misunderstood this concepts.
Moore Smith

Nov 18 '05 #1
6 2927
On Tue, 6 Jul 2004 16:55:06 -0700, MooreSmnith <MS********@hotmail.com>
wrote:
When I navigate to the next page using
Response.Rediect("MyNextPage.aspx") current page Page_Load event is
called.
What I may wrongly understood is that post back will happen whenever
there
is any server side event happens, resulting in Page_load event.
Page_Load is
also happening when I navigate to the next page. That means Page_load
will
always happen when I navigate to the next page. Please correct me If I
have
totally misunderstood this concepts.
Moore Smith



I think what you're saying is correct (I may not understand your
details). The Page_Load is called when the page is first loaded, or
posted back to, etc. Think of it as a Page object receives a request.
When a request comes in, it tries to find that page (via the URL) and
creates an instance of that Page class. This is because the web is
stateless, it has to recreate it each time (even tho .NET gives us a
little magic for keeping 'state' in other ways).

When you do a redirect, you are telling the browser in the current
response that the page it should load is somewhere else (a different URL);
the browser then makes a new (GET) request at this new URL, hence an
instance of your second page is created and loaded....

and the cycle goes on :)

--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET
Nov 18 '05 #2
Every ASP.NET page is an instance of a class and therefore each page has its
own life cycle. Each page has a Page_Load event that is called as part of
the life cycle of every page, not just on post back. If you want certain
code to only run when a postback occurs you can test for it with
Page.IsPostBack.

Response.Redirect results in a response being sent to the client,
instructing it (the client) to open a different page instead of the one
originally requested. Server.Transfer on the other hand occurs on the
server and skips the additional HTTP request but neither method will supress
the call to the Page_Load event handler on the next page.

"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eJ**************@TK2MSFTNGP12.phx.gbl...
When I navigate to the next page using
Response.Rediect("MyNextPage.aspx") current page Page_Load event is called. What I may wrongly understood is that post back will happen whenever there
is any server side event happens, resulting in Page_load event. Page_Load is also happening when I navigate to the next page. That means Page_load will
always happen when I navigate to the next page. Please correct me If I have totally misunderstood this concepts.
Moore Smith


Nov 18 '05 #3
My question is when the response.Redirect is executed, page_load event of
the page(Page 1) which has Response.Redirect and the Redirected(Page 2) page
Page_load event is getting called. I am not understanding why the the
Page_Load event of Page 1 is called. Calling Page 2 Page_Load evevnt is
understandable.
Thanks for your answers and helping me to understand this flow.
Moore.
"EijiTek" <ei*****@comcast.net> wrote in message
news:vq********************@comcast.com...
Every ASP.NET page is an instance of a class and therefore each page has its own life cycle. Each page has a Page_Load event that is called as part of
the life cycle of every page, not just on post back. If you want certain
code to only run when a postback occurs you can test for it with
Page.IsPostBack.

Response.Redirect results in a response being sent to the client,
instructing it (the client) to open a different page instead of the one
originally requested. Server.Transfer on the other hand occurs on the
server and skips the additional HTTP request but neither method will supress the call to the Page_Load event handler on the next page.

"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eJ**************@TK2MSFTNGP12.phx.gbl...
When I navigate to the next page using
Response.Rediect("MyNextPage.aspx") current page Page_Load event is called.
What I may wrongly understood is that post back will happen whenever there is any server side event happens, resulting in Page_load event. Page_Load is
also happening when I navigate to the next page. That means Page_load

will always happen when I navigate to the next page. Please correct me If I

have
totally misunderstood this concepts.
Moore Smith



Nov 18 '05 #4
As I mentioned, each page has a life cycle therefore, requesting a page
starts the life cycle. In order to perform a redirect you have to be
executing code from the first page.

Where in Page1 are you making the call to Response.Redirect()?
"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eh**************@TK2MSFTNGP11.phx.gbl...
My question is when the response.Redirect is executed, page_load event of
the page(Page 1) which has Response.Redirect and the Redirected(Page 2) page Page_load event is getting called. I am not understanding why the the
Page_Load event of Page 1 is called. Calling Page 2 Page_Load evevnt is
understandable.
Thanks for your answers and helping me to understand this flow.
Moore.
"EijiTek" <ei*****@comcast.net> wrote in message
news:vq********************@comcast.com...
Every ASP.NET page is an instance of a class and therefore each page has

its
own life cycle. Each page has a Page_Load event that is called as part of
the life cycle of every page, not just on post back. If you want certain code to only run when a postback occurs you can test for it with
Page.IsPostBack.

Response.Redirect results in a response being sent to the client,
instructing it (the client) to open a different page instead of the one
originally requested. Server.Transfer on the other hand occurs on the
server and skips the additional HTTP request but neither method will

supress
the call to the Page_Load event handler on the next page.

"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eJ**************@TK2MSFTNGP12.phx.gbl...
When I navigate to the next page using
Response.Rediect("MyNextPage.aspx") current page Page_Load event is

called.
What I may wrongly understood is that post back will happen whenever

there is any server side event happens, resulting in Page_load event. Page_Load
is
also happening when I navigate to the next page. That means Page_load

will always happen when I navigate to the next page. Please correct me If I

have
totally misunderstood this concepts.
Moore Smith




Nov 18 '05 #5
Yes,
I am making Response.Redirect from page 1.
Thanks for your response. To conclude, to redirect to different page it has
to postback itself.
Moore
"EijiTek" <ei*****@comcast.net> wrote in message
news:pM********************@comcast.com...
As I mentioned, each page has a life cycle therefore, requesting a page
starts the life cycle. In order to perform a redirect you have to be
executing code from the first page.

Where in Page1 are you making the call to Response.Redirect()?
"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eh**************@TK2MSFTNGP11.phx.gbl...
My question is when the response.Redirect is executed, page_load event of
the page(Page 1) which has Response.Redirect and the Redirected(Page 2) page
Page_load event is getting called. I am not understanding why the the
Page_Load event of Page 1 is called. Calling Page 2 Page_Load evevnt is
understandable.
Thanks for your answers and helping me to understand this flow.
Moore.
"EijiTek" <ei*****@comcast.net> wrote in message
news:vq********************@comcast.com...
Every ASP.NET page is an instance of a class and therefore each page has
its
own life cycle. Each page has a Page_Load event that is called as
part of the life cycle of every page, not just on post back. If you want certain code to only run when a postback occurs you can test for it with
Page.IsPostBack.

Response.Redirect results in a response being sent to the client,
instructing it (the client) to open a different page instead of the

one originally requested. Server.Transfer on the other hand occurs on the
server and skips the additional HTTP request but neither method will

supress
the call to the Page_Load event handler on the next page.

"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eJ**************@TK2MSFTNGP12.phx.gbl...
> When I navigate to the next page using
> Response.Rediect("MyNextPage.aspx") current page Page_Load event is
called.
> What I may wrongly understood is that post back will happen whenever

there
> is any server side event happens, resulting in Page_load event.

Page_Load
is
> also happening when I navigate to the next page. That means Page_load will
> always happen when I navigate to the next page. Please correct me If

I have
> totally misunderstood this concepts.
> Moore Smith
>
>
>
>
>



Nov 18 '05 #6
A redirect is not a postback nor does it require a postback to function. A
postback only occurs when you submit the webform such as with a button press
or other server side event triggered by a client side action. Within the
life cycle of a page certain events are called by the ASP.NET runtime such
as OnInit(), OnLoad(), and OnPreRender() regardless of whether a postback
has occured or not.

As I mentioned in my previous post, you can check Page.IsPostBack to
determine if a postback occured if you have code that you only want to run
when a postback occurs. Performing a postback is not necessary to call
Response.Redirect or Server.Transfer though it it more common for the
redirection to occur after a postback.

Here's an example (not the greatest but it works) Say you have a production
system and you're replacing one page with another but you don't want to
update all of the links right now because there are too many to find them
all or multiple systems that you don't have control over reference the page.
You could add a call to Response.Redirect() to perform the redirection to
the replacement page as soon as the page is requested or you could place a
note on the page telling people that the page has been replaced by another
page and you provide a Button (call it RedirectButton) control that, when
clicked, will call RedirectButton_OnClick() which in turn calls
Response.Redirect(). In either scenario, you'll be requesting Page1 which
will redirect to Page2 which means that a new instance of Page1 will be
created, the code for the page will execute, then when redirected, a new
instance of Page2 will be created and its code will be executed. One
mechanism requires a postback while the other doesn't. Whether the page
needs to perform a postback is determined by the needs of your application.

"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eE**************@TK2MSFTNGP12.phx.gbl...
Yes,
I am making Response.Redirect from page 1.
Thanks for your response. To conclude, to redirect to different page it has to postback itself.
Moore
"EijiTek" <ei*****@comcast.net> wrote in message
news:pM********************@comcast.com...
As I mentioned, each page has a life cycle therefore, requesting a page
starts the life cycle. In order to perform a redirect you have to be
executing code from the first page.

Where in Page1 are you making the call to Response.Redirect()?
"MooreSmnith" <MS********@hotmail.com> wrote in message
news:eh**************@TK2MSFTNGP11.phx.gbl...
My question is when the response.Redirect is executed, page_load event of the page(Page 1) which has Response.Redirect and the Redirected(Page 2)
page
Page_load event is getting called. I am not understanding why the the
Page_Load event of Page 1 is called. Calling Page 2 Page_Load evevnt
is understandable.
Thanks for your answers and helping me to understand this flow.
Moore.
"EijiTek" <ei*****@comcast.net> wrote in message
news:vq********************@comcast.com...
> Every ASP.NET page is an instance of a class and therefore each page
has its
> own life cycle. Each page has a Page_Load event that is called as part
of
> the life cycle of every page, not just on post back. If you want

certain
> code to only run when a postback occurs you can test for it with
> Page.IsPostBack.
>
> Response.Redirect results in a response being sent to the client,
> instructing it (the client) to open a different page instead of the

one > originally requested. Server.Transfer on the other hand occurs on the > server and skips the additional HTTP request but neither method will
supress
> the call to the Page_Load event handler on the next page.
>
> "MooreSmnith" <MS********@hotmail.com> wrote in message
> news:eJ**************@TK2MSFTNGP12.phx.gbl...
> > When I navigate to the next page using
> > Response.Rediect("MyNextPage.aspx") current page Page_Load event is > called.
> > What I may wrongly understood is that post back will happen whenever there
> > is any server side event happens, resulting in Page_load event.
Page_Load
> is
> > also happening when I navigate to the next page. That means Page_load will
> > always happen when I navigate to the next page. Please correct me
If I > have
> > totally misunderstood this concepts.
> > Moore Smith
> >
> >
> >
> >
> >
>
>



Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: laredotornado | last post by:
Hello, I am looking for a cross-browser way (Firefox 1+, IE 5.5+) to have my Javascript function execute from the BODY's "onload" method, but if there is already an onload method defined, I would...
2
by: Colin Basterfield | last post by:
Hi, Hmmm, a strange one for me, but hopefully not for others... I have a base page which has virtual protected void PageLoadEvent(object sender, System.EventArgs e){} In the Page_Load...
1
by: WFB | last post by:
Hi, I have a base class from which all of my pages derive (ABCBasePage). For example, ABCCustomerSelect Inherits ABCPasePage. I would now like to have ABCPocketSelect which should inherit from...
2
by: Sam | last post by:
I have a custom control (MyTextBox - taken from Microsoft website) that implements the IPostBackDataHandler interface. It is added to the controls collection of a placeholder control during the...
3
by: markeboy | last post by:
I am wanting to control when a page is loaded using a separate class to manage when and how it should be loade My current implementation needs to set a property of the page programatically...
2
by: John Lau | last post by:
Hi, Is there documentation that talks about the page lifecycle, the lifecycle of controls on the page, and the rendering of inline code, in a single document? Thanks, John
2
by: Joey Lee | last post by:
Hi, Is there any situation where the PageLoad event is not called when a postback is made from and event? Strangely, I am facing a situation where DataGrid ItemCreated event is called first...
8
by: MaryA | last post by:
I have an aspx page that loads twice inspite of using the IsPostBack i removed all controls from the page and still the page_load event is called twice I appriciate any help coz i have lost...
3
by: GauravGupta | last post by:
i want to know that is it posible to call button click event before page load event on post back.... please help me....
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.