I've run into this problem before. I believe, in my case, it occurred when using the <cfhtmlhead> tag and the <cflocation> tag in tandem. If I looked at the source of the page that was the target of the redirection, I'd see the content set by the <cfhtmlhead> tag above the HTTP headers of the page.
If I remember correctly, the work around was to use the <cfheader> tag to set the temporary redirect in place of the <cflocation> tag. Actually, I think I issued a refresh rather than a HTTP temporary redirect. Not sure why though. It's all a bit hazy. :P HTTP refresh: <cfheader name="Refresh" value="0; URL=http://www.domain.com/page.cfm"> Or, you might just try a HTTP temporary redirect: <cfheader name="location" value="http://www.domain.com/page.cfm"> <cfheader statuscode="302" statustext="Document Temporarily Moved"> Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -----Original Message----- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 9:49 AM To: CF-Talk Subject: Header info displaying on site? Hi all, I've got an app that's suddenly showing what looks like http header information at the top of every page on the site: "HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Thu, 03 Oct 2002 13:46:25 GMT Connection: close Content-type: text/html Page-Completion-Status: Normal Set-Cookie: CFGLOBALS=HITCOUNT%3D1%23LASTVISIT%3D%7Bts+%272002%2D10%2D03+06%3A46%3A2 5%27 %7D%23TIMECREATED%3D%7Bts+%272002%2D10%2D03+06%3A46%3A25%27%7D%23; expires=Sun, 27-Sep-2037 00:00:00 GMT; path=/; Set-Cookie: CFID=2150; expires=Sun, 27-Sep-2037 00:00:00 GMT; path=/; Set-Cookie: CFTOKEN=47991225; expires=Sun, 27-Sep-2037 00:00:00 GMT; path=/;" Any idea what might be causing this? Thanks, Ian -- Portent Interactive Effective web sites through Conversation Marketing � http://www.portentinteractive.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.

