Changing urls dynamically in memory

  • Thread starter Thread starter carlsadlier
  • Start date Start date
C

carlsadlier

Hi,
I'm trying tuse a page help system. When I click the help icon I want
to go the help page and when I click the breadcrumb I want to go back
to the previous page the user was on. When I click the breadcrumb
(sitemap node) I am returned to the url above the last page. How can I
fix this with out using a back button on the help page or web browser.
Thanks
 
See what you can do with Request.ServerVariables("HTTP_REFERER"). The
HTTP_REFERER variable is reliable when used on our own web site and will
contain the URL for a previous page but note the variable can only be
populated with data by a click event.
 
Back
Top