> When a page is processed (using the cfform tag) this > extreneous data is generated: > > HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 > Date: Fri, 12 Apr 2002 15:33:12 GMT > Connection: close > Content-type: text/html > Page-Completion-Status: Normal > > Is there a way to keep this from happening?
That's not extraneous data, that's part of the HTTP response header returned by the web server and CF on every response. Occasionally, some malformation will occur and the data will display in the browser window. I don't know if the problem is directly related to CFFORM, though. However, CFFORM does add content to the HTML HEAD of the document, so you might take a look at that. You might also look to see what other CF tags you've got in the page; I'd look for CFHEADER or CFLOCATION, for example, as they can both modify HTTP response headers. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

