I'm starting with a page that doesn't have a frame clicking on submit which
leads me to the framed page. Here is the url that leads to the framed page:
localhost/searchresults.cfm?start=1&end=10&results=test
How do I access the query string variables, (such as start, end, or results),
from a child frame?
Thanks!
James
Two fuseactions gives an error.
How do you "format the values as a list and add as an additional query param?"
Thanks!
James
The solution is to use URLEncodedFormat() and URLDecode()
instead of
www.domainname.com?fuseaction=#cgi.query_string#
use
www.domainname.com?fuseaction=#URLEncodedFormat(cgi.query_string)#
and on Serverside, convert back with
<cfset url.fuseaction = URLDecode(url.fuseaction)>