Just wanted to let y'all know that if anyone has this problem and uses FuseBox, to also look at the FormURL2Attributes tag, which by default writes a <base href=http://www.yoursite.com> tag at the top of your fuse. In place of this one CFSet tag, I just wrote the following conditional code to compensate for this potential problem: <cfif not FindNoCase(cgi.server_port, "443")> <CFSET caller.Base= "http://" & CGI.SERVER_NAME & caller.Base> <cfelse> <CFSET caller.Base= "https://" & CGI.SERVER_NAME & caller.Base> </cfif> Thanks again, Andy ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

