HighTechTalks DotNet Forums  

Problem Using PreviousPage

ASP.net ASP.net discussions (microsoft.public.dotnet.framework.aspnet)


Discuss Problem Using PreviousPage in the ASP.net forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Nathan Sokalski
 
Posts: n/a

Default Problem Using PreviousPage - 12-13-2007 , 11:40 AM






I have two pages, named receipt.aspx and checkoutform.aspx. My
checkoutform.aspx page has an orderid property and uses a
Response.Redirect("receipt.aspx") to send the user to to receipt.aspx. My
receipt.aspx page has the following directive:

<%@ PreviousPageType VirtualPath="~/checkoutform.aspx" %>

But when I use the following expression:

Me.PreviousPage.orderid

I recieve an Object is not set to an instance of an object error. What am I
forgetting? Thanks.
--
Nathan Sokalski
njsokalski (AT) hotmail (DOT) com
http://www.nathansokalski.com/



Reply With Quote
  #2  
Old   
bruce barker
 
Posts: n/a

Default RE: Problem Using PreviousPage - 12-13-2007 , 11:48 AM






PreviousPage only works with a ServerTransfer. this is because with a
transfer, the new page instance is created by old instance, so they both
exist at the same time.

with a redirect, the last page instance no longer exists, as it was
destroyed after the response was sent to the browser.

-- bruce (sqlwork.com)


"Nathan Sokalski" wrote:

Quote:
I have two pages, named receipt.aspx and checkoutform.aspx. My
checkoutform.aspx page has an orderid property and uses a
Response.Redirect("receipt.aspx") to send the user to to receipt.aspx. My
receipt.aspx page has the following directive:

%@ PreviousPageType VirtualPath="~/checkoutform.aspx" %

But when I use the following expression:

Me.PreviousPage.orderid

I recieve an Object is not set to an instance of an object error. What am I
forgetting? Thanks.
--
Nathan Sokalski
njsokalski (AT) hotmail (DOT) com
http://www.nathansokalski.com/




Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.