from my own travels, and dealing with microsoft, i have read 2083 chars. 5.5 + now, i (personally) have sent over 950 characters in a cflocation tag...(it was a string of ids, that i wanted to put in a report, each id is 9 chars long....plus some other location stuff and other variables, 900+ is easy to get to in my game :)!)
but, i dont know the total limit. tony -----Original Message----- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 6:46 PM To: CF-Talk Subject: Re: cflocation url length > I've noticed that cflocation seems to fail when the url argument is very > long, for example > 850 chars. I think I remember seeing somewhere that > CFLOCATION actually implements an HTTP 302 Redirect. Is there something in > the html headers which is restricts the url length, or is this an artificial > restriction imposed by cflocation? > More pratically, has anyone determined the actual cutoff point where > cflocation will fail? The limit varies from browser to browser. The thing to remember is, if your sending data that is potentially large, you need to either store the data in a session variable/database/whatever and pick it out at the other end, or do it in a form post. Using Javascript you can easily make a hidden form on a "Loading..." page submit automatically.... <BODY ONLOAD="document.theForm.submit()"> Loading... <FORM ACTION="blah.cfm"> <INPUT TYPE="HIDDEN" NAME="Foo" VALUE="Some long data in here"> </FORM> </BODY> --- James Sleeman Innovative Media Ltd Ph: (03) 377 6262 http://www.websolutions.co.nz CAUTION: The information contained in this email message is confidential and may be legally privileged. If the reader of this message is not the intended recipient you are notified that any use, dissemination, distribution or reproduction of this message is prohibited. If you have received this message in error please notify the sender immediately and destroy the original message and any attachments. Views expressed in this communication may not be those of Innovative Media Ltd. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.372 / Virus Database: 207 - Release Date: 6/21/2002 ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. 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

