This is SOT but,
I need to trigger a form on a different host by calling
the response page using the full url
i.e
http://www.domain.com/subscribeResponse1.cfm?email=emailaddress&listid=1

Is there a way to do this behind the scenes without the user taking direct
action or attach it in another manner?






-----Original Message-----
From: Ken Ferguson [mailto:[EMAIL PROTECTED]
Sent: Friday, May 26, 2006 2:57 PM
To: CF-Talk
Subject: Re: Passing a query string as a single url variable


It seems to be working as you'd expect. The following code yields the
following results:
<cfif isDefined("url.action")><cfdump var="#url#"></cfif>
<cfoutput>
<cfset qrystr="name=Jane&eyes=brown&hair=blond&number=2125551234">
Here is the qrystr encoded: #URLEncodedFormat(qrystr)#<br>
<a
href="test.cfm?action=saveinfo&qrystr=#URLEncodedFormat(qrystr)#">save
her info</a>
</cfoutput>

struct
ACTION  saveinfo
QRYSTR  name=Jane&eyes=brown&hair=blond&number=2125551234


****************************************************************
Ken Ferguson
214.636.6126
[EMAIL PROTECTED]

I'm currently in the market for any available project work.
Experience, knowledge and strong references I can
certainly provide.
****************************************************************



Ian Skinner wrote:
> So, the receiving template is going to see qrystr only as "name=Jane", and
not the full string. How can I pass qrystr in the URL so that it remains
encoded and will be received with it's complete value?
>
> I don't think this is true.  I think the status is just decoding the url
for the status display.  If you submit to your receiving page and output
url.querystr I suspect you will get the entire string you desire.
>
>
> --------------
> Ian Skinner
> Web Programmer
> BloodSource
> www.BloodSource.org
> Sacramento, CA
>
> ---------
> | 1 |   |
> ---------  Binary Soduko
> |   |   |
> ---------
>
> "C code. C code run. Run code run. Please!"
> - Cynthia Dunning
>
> Confidentiality Notice:  This message including any
> attachments is for the sole use of the intended
> recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or
> distribution is prohibited. If you are not the
> intended recipient, please contact the sender and
> delete any copies of this message.
>
>
>
>
>



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241628
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to