I want to get in ColdFusion 10 an URL parameter from CGI.QUERY_STRING
by its name. How to do it without looping?
相关问题
- UrlEncodeUnicode and browser navigation errors
- Improve converting string to readable urls
- How to specify argument attributes in CFscript? (C
- Pass code to a method as an argument
- Jasper: error opening input stream from url
相关文章
- How can I convert a PHP function's parameter l
- How do I prevent SQL injection with ColdFusion
- C# HttpClient.SendAsync always returns 404 but URL
- Using UNREFERENCED_PARAMETER macro
- Is there a simple way to pass specific *named* Pow
- Prevent $anchorScroll from modifying the url
- How does a browser handle cookie with no path and
- How to scope closure's variables in CF10?
Any values passed in to a page via the query string are available in the URL scope.
Assume you have a query string that looks like
http://mydomain.com?val1=42&val2=moo
you would access the variables by referencing them as suchOr, in cfscript
To see all the values passed in via query string, you can also dump out the URL scope.
or, in cfscript