Skip to content

Instantly share code, notes, and snippets.

@thecfguy
Created August 22, 2013 13:00
Show Gist options
  • Select an option

  • Save thecfguy/6306812 to your computer and use it in GitHub Desktop.

Select an option

Save thecfguy/6306812 to your computer and use it in GitHub Desktop.
<cfparam name="url.param1" default="URL Parameter 1">
<cfparam name="url.param2" default="URL Parameter 2">
<cfscript>
function callme(){
var url = "http://www.thecfguy.com";
writedump([url,local.url]);
}
callme();
writedump(url);
abort;
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment