HTTP_RERERER in CFC
Hi Everyone -
My application is built using ColdFusion MX7. In my application, I have a CFC with a function that is supposed to return the CGI.HTTP_REFERER.
When I call this method, it does not return anything.
<cffunction name="DumpReferrer" output="false" access="remote" returntype="string">
<cfset var referrer = CGI.HTTP_REFERER>
<cfreturn referrer>
</cffunction>
A call to this function from within a cfm page is not returning the referrer. How can I get at the referrer from within a CFC?
Thanks!
