Question
What is best solution?.
I got a call like this in CF7 code....
<cfhttp method="get" url=" http://prodsrv/userapp/update.cfm?id=#URLEncodedFormat(id)#&name=#URLEncodedFormat(name)#&Email=#URLEncodedFormat(Email)#">
Issue 1:
update.cfm?id
? is not passing in CF7. What is best solution?.
Issue 2 :
Email=#URLEncodedFormat(Email)
@ inside email is decoded to %40.
What is best solution to fix this issue?.
If i change %40 to @, call works fine.
If i copy and paste this in browser..works fine....but dynamic solution is not working.....
http://prodsrv/userapp/update.cfm?id=11101&name=jsmith&Email=jsmith@psoftmail.com
<cfhttp method="get" url=" http://prodsrv/userapp/update.cfm?id=#URLEncodedFormat(id)#&name=#URLEncodedFormat(name)#&Email=#URLEncodedFormat(Email)#">
Issue 1:
update.cfm?id
? is not passing in CF7. What is best solution?.
Issue 2 :
Email=#URLEncodedFormat(Email)
@ inside email is decoded to %40.
What is best solution to fix this issue?.
If i change %40 to @, call works fine.
If i copy and paste this in browser..works fine....but dynamic solution is not working.....
http://prodsrv/userapp/update.cfm?id=11101&name=jsmith&Email=jsmith@psoftmail.com