Page_Load() gets called with Context.Handler == null after Server.Transfer( )

lmaoXitsXqtard

New Member
Anyone have any idea why i get this behavior in 2. in an ASP.NET project below?[*]From page, B, I call Server.Transfer( ) (using master pages).[*]In Page_Load() for page B, Context.Handler == null, I use it to get a ref to the previous caller page. (Postback is set to true here). Usually when Page_Load() get called I can get a ref to the calling page.The problem I want to solve is to forward values from page A -> to page B and then further to -> page C. The values are transfered successfully from page A to page B, using Server.Transfer(), casting and readning properties from page B. It's just that the values can never be transfered further to page C, as they are lost in the postback that happens on page B, when the next-button handler gets called.
 
Back
Top