This content has been marked as final.
Show 2 replies
-
1. Re: Remove url parameter
Adam Cameron. May 18, 2012 12:27 AM (in response to Phinehas1234)If you don't want things in the URL scope... don't pass parameters in the query string.
Or alter your logic from simply:
isDefined("URL.XXX")
to include the additional criteria that you wish to consider, eg:
if (!someCriteriaThatMakesTheURlParamIrrelevant){
if (isDefined("URL.XXX")){
// some stuff
}
}else{
// some other stuff
}
NB: isDefined() is a bit of a legacy and someonwhat imprecise function. You're better off using structKeyExists().
--
Adam
-
2. Re: Remove url parameter
Phinehas1234 May 20, 2012 6:18 PM (in response to Adam Cameron.)Spend much time on solving it. Finally, I can remove the parameter in query string successfully.

