Return to previous page

Jim Ford

New Member
I have an existing website and am adding webspeed to the site to make some of the pages active. I will display an html page (let's call it callingpage.html) that runs code test.w. My code displays several other pages generated by webspeed. After displaying several pages generated by webspeed, I want to return to original callingpage.html. Becuase the callingpage.html may be a different page within the web site with a different name, how do I pass the name of the callingpage.html to my progress code so that I can return to callingpage.html at a later time? The existing web site pages are also dynamic and are generated by a content manger using an SQL backend. I have no connection to the SQL DB or the dynamic page that is generated by the content manager, therefore I can not use a cookie or other value to pass from the calling page to my webspeed code. Is there an environment variable that is available and identifies the calling page to my .w code? Any ideas?
 
Did you already tried to store the URL and then use that to return to the page?

Casper.
 
I got the provider of the orginal code to pass the page number from the SQL DB so that I can get the value using get-value. I placed that value in my Progress DB and can use it at a later time. Problem solved.
 
Back
Top