> How can I hide the information passed in a URL?  I don't want the user to
> see the variables in the address line.

If you set a persistent scope variable ( session, client, etc. ) to match
each significant url variable, then you can use cflocation to relocate to
the current page without the query string and use the persistent scope
variables and they should never see them in the url ( even if they view
properties on the page )... i.e.

<cfif IsDefined("url.myurlvar")>
        <cfset client.myurlvar = url.myurlvar>
        <cflocation url="#cgi.path_info#" addtoken="no"><cfabort>
</cfif>

<cfoutput>#client.myurlvar#</cfoutput>

hth


Isaac Dealey
Certified Advanced ColdFusion Developer

www.turnkey.to
954-776-0046
______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to