Forum Moderators: mack

Message Too Old, No Replies

ColdFusion Development - HTTP_Referer

How to use the http_referer to track the calling page

         

infoseeker

3:56 pm on Mar 9, 2004 (gmt 0)

10+ Year Member



I need to figure out a way to track the calling page (of a set of buttons) and then, accordingly, show/hide the relevant buttons on the resulting (i.e. next) page. Any inputs with code examples are highly appreciated!

Strange

2:02 pm on Mar 10, 2004 (gmt 0)

10+ Year Member



Have you tried passing your variables through a querystring? Then on the next page you can run
<cfif url.querystring>
Information
</cfif>

infoseeker

3:07 pm on Mar 10, 2004 (gmt 0)

10+ Year Member



Strange, thanks for the input. i'll give it a shot and keep u posted.