Wondering if someone has a workaround for the following:

I'm using a cfhttp - get with a bunch of cfhttpparams to post to an asp form
page that also uses method="get". Sounds easy enough but the asp page which
processes the form errors with an invalid formfield value.

I've tracked it down it to the value attribute which is encoded when I don't
want it to be:

<cfhttpparam name="my+name" type="FORMFIELD" value="my+value"
encoded="false"/>
<cfhttpparam name="my+term" type="FORMFIELD" value="*" encoded="false"/>

In Wireshark i see:

 /myResults.asp?my+name=my%2Bvalue&my+term=2%A

The encoding setting of false only affects the name of the field not the
value. I need:

 /myResults.asp?my+name=my+value&my+term=*

As I understand it a get wants to url encode so CF is handling it properly
but how can I get the value across to myResults.asp without encoding.

Thanks in advance
Angus

He who thinks that he has missed something obvious :)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to