I am using the following code in the header of the pages on a web site: Session("backPage") = curPageURL()
I want to capture the URL of the page the user is looking at.
Then when they click on a link on the header, it transfers them to another page. When they are finished with the page, I want to transfer them back to the prior page the user was looking at.
When I do a Response.Write "backPage=" & Session("backPage") in the header, the actual URL is displayed. However when I do a Response.Write "backPage=" & Session("backPage") on the linked to page, I get a null value. What am I missing?
Regards, Richard
I want to capture the URL of the page the user is looking at.
Then when they click on a link on the header, it transfers them to another page. When they are finished with the page, I want to transfer them back to the prior page the user was looking at.
When I do a Response.Write "backPage=" & Session("backPage") in the header, the actual URL is displayed. However when I do a Response.Write "backPage=" & Session("backPage") on the linked to page, I get a null value. What am I missing?
Regards, Richard