Hi Brian, > I fixed it by commenting out the cflocation and adding a JScript to direct > the page. Has anyone ever had this happen? > > I am having a problem with http info showing up on certain pages. I am > clueless as to why. Has anyone had any problems with this? Here's what's > showing up.. > > > > HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Wed, 15 Jan 2003 21:04:27 > GMT Connection: close Content-type: text/html cache-control: no-cache > Expires: 0 Pragma: no-cache Page-Completion-Status: Normal > Page-Completion-Status: Normal Page-Completion-Status: Normal > > > > The application.cfm page does have this... > > > > <cfhtmlhead text="<script language=""javascript"">window.status = > ""WelcomHome"";</script>"> > > <cfif lscriptname is not "somedoc.cfm"> > > <cfheader name="cache-control" value="no-cache"> > > <cfheader name="Expires" value="0"> > > <cfheader name="Pragma" value="no-cache"> > > </cfif> -- yeah, we've had this happen before... The cause of this is a <CFHTMLHEAD> tag with content greater than 1024 characters, positioned above a <CFLOCATION> tag. This is a bad combination... cflocation writes to the http headers, and cfhtmlhead writes to the HTML head, somehow these two are runnning into each other.
How to fix? If you've ever got stuff that needs to go in the HTML head that is long text, don't use <CFHTMLHEAD> ... and also try to position the logic in your page so that any cflocations are taken care of as soon as possible. We had this problem about 2 years ago and found a solution on forums, which doesn't exist anymore, but you can thank Brett Suwyn (mailto:[EMAIL PROTECTED]) who offered the answer in: http://forums.allaire.com/devconf/Thread.cfm?&&Message_ID=411284&_#Message41 1284 AJ -- Aaron Johnson http://cephas.net/blog/ [EMAIL PROTECTED] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 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. Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

