coldfusion

How Can I get the URL parameter & Value in Coldfusion?


How Can I get the URL parameter & Value in Coldfusion? for Ex:-

my URL is

test.cfm?par1=val1&par2=val2&par3=val3

Is it possible to get the second parameter and its value directly?

with <cfset param='#url.par2#'> I can get value of par2, But my parameters are dynamicically generated from other page and passed to here (par2 may be next time abc2,xyz2 etc..) So I think better way is to get the parameter and Value in 2nd Possition(Possition dont change always).

Any Idea How can I get it ?

Thanks in advance


Solution

  •    <cfset Param2 = ListGetAt(CGI.QUERY_STRING,2,"&")>