You spelled it correctly...

The real answer:

I have done this before in CF using <cfheader> and <cfcontent>

<cftry>
        <cfquery name="GetFile" datasource="#dsource#">
                SELECT *
                FROM File
                WHERE MinuteID = #url.ID#
        </cfquery>
        <cfif GetFile.RecordCount NEQ 1>
                <cfthrow>
        </cfif>
                <cfheader name="Content-Disposition"
value="attachment;filename=#GetFile.FileName#">
                <cfcontent type="#getfile.MimeType#"
file="#application.LocalPath#\#GetFile.SystemFileName#" deletefile="No">

        <cfcatch>
                No such file
        </cfcatch>
</cftry>



Does this help?

> -----Original Message-----
> From: Dan Phillips [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 02, 2002 10:23 AM
> To: CF-Community
> Subject: RE: refer checking
> 
> LOL! well that was one helluva typo. My bad.
> 
> -----Original Message-----
> From: Nick McClure [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 02, 2002 10:20 AM
> To: CF-Community
> Subject: RE: refer checking
> 
> 
> The best was I have found is by smell. The munchies and the constant
> paranoia are a good way to tell.
> 
> Oh wait. ;)
> 
> > -----Original Message-----
> > From: Dan Phillips [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, October 02, 2002 10:17 AM
> > To: CF-Community
> > Subject: refer checking
> >
> > Does anyone know how to (in CF or not) do refer checking? For
example:
> >
> 
> 
> 
> 
______________________________________________________________________
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

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to