Answered
outputting url with parameters
I've been using
<CFSET CurrentURL = ' http://' & CGI.SERVER_NAME & CGI.SCRIPT_NAME>
to output a URL, but this does not include the URL parameters (?objectid=1234453-24242 etc.)
The parameters are not always the same (different variable names) so I would like to make sure that the parameters are output no matter what the variable names are. How can I output the parameters with the URL?
<CFSET CurrentURL = ' http://' & CGI.SERVER_NAME & CGI.SCRIPT_NAME>
to output a URL, but this does not include the URL parameters (?objectid=1234453-24242 etc.)
The parameters are not always the same (different variable names) so I would like to make sure that the parameters are output no matter what the variable names are. How can I output the parameters with the URL?
