vote up 0 vote down star

I have a page (page1) with a LinkButton that, when clicked, will take the browser to a new page (page2).

When I click the LinkButton page1 posts back and hits the Init and Load event handlers for page1, and then promptly goes to the Unload and Dispose handlers, and then moves on to page2.

How can I tell in the page1 postback that I am about to be taken to a new page, as opposed to clicking a Button that causes the page posts back but does not navigate away?

flag
Does the linkbutton's event handler contain the 'Response.Redirect' to "page2"? – David Nov 6 at 22:38

3 Answers

vote up 0 vote down

You can also add OnClick events to your code behind for each button, and in the case of the one that is to postback to another page, do a Response.Redirect. The limitation of that however is that if you need form data on "page2", you will lose posted form data on a Response.Redirect.

link|flag
vote up 0 vote down

It appears that you're not using the OnCLick event of the LinkButton, If you use the event, perform the action of the click there, not on the Page Load event?

link|flag
vote up 0 vote down

You question is not clear, can you please add some more evidence to make you point clear so that it can be answered ?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.