CFLib.org – Common Function Library Project

getCurrentURL()

Last updated September 05, 2008

author

Topper

Version: 1 | Requires: CF6 | Library: UtilityLib

Description:
Returns the current URL for the page. Works better than other methods. Other methods of calculating the URL from CGI variables won't work if your application is in a sub-folder like http://localhost/myapp/ - they ignore the "myapp" bit. I've seen and tired all sorts of other ways to get the Current URL but this is the only method I have found that works in all secenarios.

Return Values:
Returns a string.

Example:

<cfset pageURL = GetCurrentURL()>

Parameters:

No arguments.

Full UDF Source:

<!---
 Returns the current URL for the page.
 
 @return Returns a string. 
 @author Topper (topper@cftopper.com) 
 @version 1, September 5, 2008 
--->
<cffunction name="getCurrentURL" output="No" access="public" returnType="string">
    <cfset var theURL = getPageContext().getRequest().GetRequestUrl().toString()>
    <cfif len( CGI.query_string )><cfset theURL = theURL & "?" & CGI.query_string></cfif>
    <cfreturn theURL>
</cffunction>

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson