Had this working then changed it to a custom tag.... Changed it back and it stopped working.....
Any ideas <!--- Set Default Values ---> <cfparam name="Amount" default="1000"> <cfparam name="from" default="GBP"> <cfparam name="to" default="USD"> <cfparam name="font" default="Verdana"> <!--- Grab Conversion ---> <cfhttp url="http://www.forexe.com/cgi-bin/currencyconvertor.asp" method="post" resolveurl="false"> <cfhttpparam type="FORMFIELD" name="Amount" value="#Amount#"> <cfhttpparam type="FORMFIELD" name="ccy2" value="#To#"> <cfhttpparam type="FORMFIELD" name="ccy1" value="#From#"> </cfhttp> <!---Parse the info---> <cfset Start=Find('RESULTS',CFHTTP.FileContent,1) + 7> <cfset End=Find('<small>',CFHTTP.FileContent,Start)> <cfset Length=end-start> <cfset TranslatedText=Mid(CFHTTP.FileContent,Start,Length)> <cfset TranslatedText ="#replace(variables.TranslatedText, "<br>", "" , "ALL" )#"> <cfset TranslatedText ="#replace(variables.TranslatedText, "Arial", "#font#" , "ALL" )#"> <!---Display the info---> <cfoutput> #TranslatedText# </cfoutput> Thanks, Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W: www.evolutioninternet.co.uk E: [EMAIL PROTECTED] This email, together with any attachments, is for the exclusive and confidential use of the addressee(s). Any other distribution, use or reproduction without the sender's prior consent is unauthorised and strictly prohibited. If you have received this message in error, please notify the sender by email immediately and delete the message from your computer without making any copies. -----Original Message----- From: Mike Townend [mailto:[EMAIL PROTECTED]] Sent: 23 July 2002 14:35 To: CF_OpenSource Subject: RE: BT ECHANGE CHECKER First thoughts are that you could use the CFHTTP command to post a postcode entered onto your site to the BTOpenWorld site and then parse the returned information for the yes or no that would be returned... HTH -----Original Message----- From: Mark Stephenson - Evolution Internet [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 14:05 To: CF_OpenSource Subject: RE: BT ECHANGE CHECKER Dear ALL, I am based in the UK so propably there are only brits know what I am going on about... If you are not a brit and can help anyway PLEASE do so!!! btopenworld.com have an online tool for visitors to enter their postcode and see if their local exchange has been enabled for ADSL. I am wanting to have the ability to do this from my site.... Any ideas if there is a tool out there or any ideas if there is a way to use cf to grab the YES or NO. Kind Regards, Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W: www.evolutioninternet.co.uk E: [EMAIL PROTECTED] This email, together with any attachments, is for the exclusive and confidential use of the addressee(s). Any other distribution, use or reproduction without the sender's prior consent is unauthorised and strictly prohibited. If you have received this message in error, please notify the sender by email immediately and delete the message from your computer without making any copies. -----Original Message----- From: PS Fong [mailto:[EMAIL PROTECTED]] Sent: 23 July 2002 12:16 To: CF_OpenSource Subject: RE: CFMAIL: html vs. text mime type failover Yes, I would like to be part of the group, shares information as well. I am a CF user for about 2 years. Can I jsut reply to the email sent from cf_opensource for collaborations? :) Thanks. -----Original Message----- From: Mark Stephenson - Evolution Internet Fong, My mail was with reference to a mail sent with the subject "CFMAIL: html vs. text mime type failover", which i supplied code for (originated by Bryant P. Fields). The idea of the mailing list is to use it and its members as a resource and if necessary help with opensource collaborations. To mail to every one on the list just email [EMAIL PROTECTED] . You must have joined the list at some point? Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W: www.evolutioninternet.co.uk E: [EMAIL PROTECTED] This email, together with any attachments, is for the exclusive and confidential use of the addressee(s). Any other distribution, use or reproduction without the sender's prior consent is unauthorised and strictly prohibited. If you have received this message in error, please notify the sender by email immediately and delete the message from your computer without making any copies. -----Original Message----- From: PS Fong [mailto:[EMAIL PROTECTED]] Sent: 23 July 2002 11:54 To: CF_OpenSource Subject: RE: CFMAIL: html vs. text mime type failover Dear Sir, Mind if I ask what is this reagarding? How can I benefit/respond to this CF_Opensource thingy? Thanks. Fong -----Original Message----- From: Mark Stephenson - Evolution Internet [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 6:25 PM To: CF_OpenSource Subject: RE: CFMAIL: html vs. text mime type failover Did this work for you??? Mark Stephenson New Media Director Evolution Internet T: 0870 757 1631 F: 0870 757 1632 W: www.evolutioninternet.co.uk E: [EMAIL PROTECTED] This email, together with any attachments, is for the exclusive and confidential use of the addressee(s). Any other distribution, use or reproduction without the sender's prior consent is unauthorised and strictly prohibited. If you have received this message in error, please notify the sender by email immediately and delete the message from your computer without making any copies. -----Original Message----- From: Bryant P. Fields [mailto:[EMAIL PROTECTED]] Sent: 22 July 2002 16:42 To: CF_OpenSource Subject: CFMAIL: html vs. text mime type failover Does anyone know how to send a CFMAIL message that distinguishes between HTML and Text only email clients? Thanks. __________________________________________________ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
