Re: CFHeader/CFContent woes.

2004-02-05 Thread Dan O'Keefe
Mary Jo Sminkey wrote: CFHEADER NAME=Content-Disposition VALUE=attachment; filename=fax_tenant.doc cfcontent type=application/msword file=c:\inetpub\wwwroot\app\fax_tenant.doc deletefile=No The problem is that no matter what I do to the cfheader line, I NEVER see fax_tenant.doc as the

RE: CFHeader/CFContent woes.

2004-01-12 Thread Hugo Ahlenius
Shawn, You shouldn't see the filename in the URL bar, you are still making a request to that .cfm template. The filename comes into place when you open the file in word or when you click 'save', then that filename will be used (instead of the .cfm template). /Hugo

RE: CFHeader/CFContent woes.

2004-01-12 Thread A.Little
Hi, Not sure if this will help but I noticed in my cfheader/cfcontent code that I had double quotes around the filename in the value attribute of the cfheader tageg value=inline; filename=myfilename.doc HTH Alex | -Original Message- | From: Shawn Grover [mailto:[EMAIL PROTECTED]

Re: CFHeader/CFContent woes.

2004-01-10 Thread Jochem van Dieten
Shawn Grover wrote: CFHEADER NAME=Content-Disposition VALUE=attachment; filename=fax_tenant.doc cfcontent type=application/msword file=c:\inetpub\wwwroot\app\fax_tenant.doc deletefile=No The problem is that no matter what I do to the cfheader line, I NEVER see fax_tenant.doc as the

RE: CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
know what else I can do to resolve this.Any suggestions? Shawn -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Saturday, January 10, 2004 3:09 PM To: CF-Talk Subject: Re: CFHeader/CFContent woes. Shawn Grover wrote: CFHEADER NAME=Content-Disposition VALUE

RE: CFHeader/CFContent woes.

2004-01-10 Thread Bryan F. Hogan
I always use application/unknown. Here is the code that I use. cftry cfheader name=content-disposition value=attachment;filename=#qry_getDocument.documentLink# cfcontent type=application/unknown file=#expandPath('..')'\assets\uploads\'qry_getDocument.documentLink# deletefile=no cflocation

RE: CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Saturday, January 10, 2004 3:10 PM To: CF-Talk Subject: RE: CFHeader/CFContent woes. I always use application/unknown. Here is the code that I use. cftry cfheader name=content-disposition value=attachment;filename=#qry_getDocument.documentLink

Re: CFHeader/CFContent woes.

2004-01-10 Thread Jochem van Dieten
Shawn Grover wrote: sorry, the page is on an internal development server. Then just telnet to the webserver and see if the proper headers are returned. I just noted though the problem doesn't occur in Netscape 7.1, but does in IE 6.0.I've also found refernce to a windows bug, but not the

RE: CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
sighs No luck on that. I've worked around the problem for now by opening a new window and directing it at the UNC path to the file in question.The application is intended for an Intranet, so this should be a resonable solution. Thanks anyways. Shawn -Original Message- From: Kay