Click here to Skip to main content
Click here to Skip to main content

Resolving PostBackUrl and button_Click events

By , 21 Jun 2011
 
I'm working on a web site that contains a button. Originally, this button had an event handler that performed some processing and then called Response.WriteFile, which in turn caused the current page to be replaced with the file being written. This was not the desired behavior, so I added a PostbackUrl element to bring up the other page in a new window. Imagine my dismay to discover that specifying a PostbackUrl causes the page to NOT fire the Click event for the button.
 
My work around is comprised of two steps:
 
0) In the page being navigated FROM, move the code out of the event handler into a public method.
 
1) In the page being navigated TO, add the following line to the Page_Load event handler:
 
((MyPreviousPage)(Page.PreviousPage)).MyPublicMethod();
 
or for VB:
 
CType(Page.PreviousPage, MyPreviousPage).MyPublicMethod()

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

John Simmons / outlaw programmer
Software Developer (Senior)
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.
 
My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralReason for my vote of 2 It is not working...memberramakant dewangan18-Aug-11 0:20 
GeneralRe: You're doing it wrong.mvpJohn Simmons / outlaw programmer18-Aug-11 1:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 21 Jun 2011
Article Copyright 2011 by John Simmons / outlaw programmer
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid