The name of the file that that they are downloading from the server is
hardcoded in the cfm page (filename is dynamically built depending on a
client variable).  All I want them to be able to do is specify the location
to save it to on their hard drive, which should be taken care of
automaticaly by their browser, if I could just get the browser to save it
instead of displaying it!


-----Original Message-----
From: Adam Cantrell [mailto:[EMAIL PROTECTED]]
Sent: 22 August 2000 15:38
To: [EMAIL PROTECTED]
Subject: RE: Problem with CFFTP



So how do you maintain directory security?  I know you could only display
the files you want that particular user to beable to download, but what's
stopping them from guessing other filenames in their browser to see if they
can get anybody elses files?  I have resorted to pulling the files out from
behind the wwwroot using cffile and putting them into a temp directory for
the user to download - and then when they log out, I delete them from the
temp directory(pretty lame, I know).  I wish the cfcontent tag worked
correctly, I could pull files from behind the wwwroot and maintain security
by never making the files publicly accessable.  Anyways, do you have any
directory security in place?

> -----Original Message-----
> From: Moneymaker, Jon S. [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 22, 2000 9:20 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Problem with CFFTP
>
>
> This message is in MIME format. Since your mail reader does not understand
> this format, some or all of this message may not be legible.
>
> ------_=_NextPart_001_01C00C44.1E5D7688
> Content-Type: text/plain;
>       charset="iso-8859-1"
>
> Users can simply right click on the "link" and select the option: "save
> target as..." and it will bring up the save dialog box and give them the
> option to save it on their system....I use this on our intranet
> and it works
> just fine.
>
> It requires some user education (always a perilous and onerous
> undertaking)....but that, coupled with a rather large font size:
> Right Click
> to Download
>
> seems to work for us!!
>
> Jon
> -----Original Message-----
> From: Andy Ewings [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 22, 2000 9:30 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Problem with CFFTP
>
>
> Ok, I tried it and unfortunately it loaded it into the browser as a word
> document.  Any ideas as to the direction I need to point my heroic efforts
> in order to prompt the user to download the file?!
>
> -----Original Message-----
> From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> Sent: 22 August 2000 14:18
> To: [EMAIL PROTECTED]
> Subject: Re: Problem with CFFTP
>
>
> Keep in mind that with IE and MS-Word, Powerpoint, Excel, it
> sometimes takes
> heroic efforts to overcome the M$ natural tendency to display the document
> in the browser, as opposed to force a download.
>
> DC
>
> ----- Original Message -----
> From: "David E. Crawford" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, August 22, 2000 13:14
> Subject: Re: Problem with CFFTP
>
>
> > To a certain extent that is true.  However, by setting the appropriate
> > MIME
> > type for the document you can force the browser to "save" it rather than
> > rendering it.
> >
> > DC
> >
> > ----- Original Message -----
> > From: "Andy Ewings" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, August 22, 2000 13:12
> > Subject: RE: Problem with CFFTP
> >
> >
> > > I thought <CFContent> basically allows the user to read non HTML files
> > > in
> > > their browser window (after all the browser is just a container).  I
> > > don't
> > > want to open the file in their browser, just let them save it to their
> > > hard
> > > drive and open it up in word (it's a word doc)
> > >
> > > -----Original Message-----
> > > From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> > > Sent: 22 August 2000 14:05
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: Problem with CFFTP
> > >
> > >
> > > <CFCONTENT> causes CF to read a file from the web server and "push" it
> > > to
> > > the client via the browser.  <CFFILE> lets you move files around on
> > the
> > > web
> > > server, including creating, renaming, copying and deleting.
> > >
> > > DC
> > >
> > > ----- Original Message -----
> > > From: "Andy Ewings" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Tuesday, August 22, 2000 13:02
> > > Subject: RE: Problem with CFFTP
> > >
> > >
> > > > Oh ok....but I still don;t see/understand how you move files from
> > the
> > > > web
> > > > server to the client using cffile/cfcontent.  I would have thought
> > > cfftp
> > > > would have done this by the nature of it's name!  Anyone show me
> > what
> > > to
> > > > do?!
> > > >
> > > > -----Original Message-----
> > > > From: David E. Crawford [mailto:[EMAIL PROTECTED]]
> > > > Sent: 22 August 2000 13:56
> > > > To: [EMAIL PROTECTED]
> > > > Subject: Re: Problem with CFFTP
> > > >
> > > >
> > > > They already have the ability to specify where it is saved.  That is
> > > > completely a client function.
> > > >
> > > > DC
> > > >
> > > > ----- Original Message -----
> > > > From: "Andy Ewings" <[EMAIL PROTECTED]>
> > > > To: <[EMAIL PROTECTED]>
> > > > Sent: Tuesday, August 22, 2000 12:52
> > > > Subject: RE: Problem with CFFTP
> > > >
> > > >
> > > > > Oh.....
> > > > >
> > > > > How do I do that?  What I am trying to do is let the user download
> > a
> > > > > specific file from the web server to there Hard drive but I want
> > to
> > > > let
> > > > > them
> > > > > choose where to save it.  Have you got any code that will do this?
> > > > >
> > > > > -----Original Message-----
> > > > > From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
> > > > > Sent: 22 August 2000 14:28
> > > > > To: [EMAIL PROTECTED]
> > > > > Subject: Re: Problem with CFFTP
> > > > >
> > > > >
> > > > > Yeah,  You can't use CFFTP to move files between the cfserver and
> > > > > browser.
> > > > > Only between the FTP server and CF server.  You have to use CFFILE
> > > and
> > > > > CFCONTENT to upload and download from the browser to the server
> > and
> > > > then
> > > > > from the server to the FTP server and vice versa.
> > > > >
> > > > > ----- Original Message -----
> > > > > From: "Andy Ewings" <[EMAIL PROTECTED]>
> > > > > To: "CFTalk (E-mail)" <[EMAIL PROTECTED]>
> > > > > Sent: Tuesday, August 22, 2000 5:56 AM
> > > > > Subject: Problem with CFFTP
> > > > >
> > > > >
> > > > > > I have a problem with CFFTP.  I am trying to use CFFTP to
> > download
> > > a
> > > > > file
> > > > > > onto a user hard drive.  When the user clicks a button the web
> > > site
> > > > > creates
> > > > > > a file using CFFILE and then tries to download it to C:\temp
> > using
> > > > > CFFTP.
> > > > > > However all it is doing is saving it to C:\Temp on the web
> > server!
> > > > > Here
> > > > > is
> > > > > > my code....
> > > > > >
> > > > > > <cfftp action="open" username="<username>" password="<password>"
> > > > > > server="<servername>" connection="temp" stoponerror="no">
> > > > > > <cfoutput>
> > > > > > Open Error Code: #cfftp.errorcode#
> > > > > > Open Error Text: #cfftp.errortext#
> > > > > > </cfoutput>
> > > > > >
> > > > > > <cfftp connection="temp" action="GETFILE"
> > > > localfile="c:\temp\test.doc"
> > > > > > remotefile="#thisdirectory#TestFile.htm" transfermode="BINARY"
> > > > > > failifexists="No" stoponerror="No">
> > > > > > Download Error Code: #cfftp.errorcode#<br>
> > > > > > Download Error Text: #cfftp.errortext#<br>
> > > > > > </cfoutput>
> > > > > > <cfftp action="CLOSE" connection="cv">
> > > > > >
> > > > > > Both FTP operations succeed.  Anyone have any ideas?
> > > > > >
> > > > > >
> > > > > >
> > ------------------------------------------------------------------
> > > > > > Andrew Ewings
> > > > > > Project Manager
> > > > > > Thoughtbubble Ltd
> > > > > >
> > ------------------------------------------------------------------
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > ------------------------------------------------------------------------
> > > > > --
> > > > > ----
> > > > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > > > To Unsubscribe visit
> > > > >
> > > >
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > > > or
> > > > > send a message to [EMAIL PROTECTED] with
> > > 'unsubscribe'
> > > > > in
> > > > > the body.
> > > > > >
> > > > >
> > > > >
> > > >
> > >
> > ------------------------------------------------------------------------
> > > > > ----
> > > > > --
> > > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > > To Unsubscribe visit
> > > > >
> > > >
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > > > or
> > > > > send a message to [EMAIL PROTECTED] with
> > > 'unsubscribe'
> > > > > in
> > > > > the body.
> > > > >
> > > >
> > >
> > ------------------------------------------------------------------------
> > > > > ------
> > > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > > To Unsubscribe visit
> > > > >
> > > >
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > > > or send a message to [EMAIL PROTECTED] with
> > > > > 'unsubscribe' in the body.
> > > > >
> > > >
> > > >
> > >
> > ------------------------------------------------------------------------
> > > > ----
> > > > --
> > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > To Unsubscribe visit
> > > >
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > > or
> > > > send a message to [EMAIL PROTECTED] with
> > 'unsubscribe'
> > > > in
> > > > the body.
> > > >
> > >
> > ------------------------------------------------------------------------
> > > > ------
> > > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > > To Unsubscribe visit
> > > >
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > > or send a message to [EMAIL PROTECTED] with
> > > > 'unsubscribe' in the body.
> > > >
> > >
> > >
> > ------------------------------------------------------------------------
> > > ----
> > > --
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > or
> > > send a message to [EMAIL PROTECTED] with 'unsubscribe'
> > > in
> > > the body.
> > >
> > ------------------------------------------------------------------------
> > > ------
> > > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > > To Unsubscribe visit
> > >
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > > or send a message to [EMAIL PROTECTED] with
> > > 'unsubscribe' in the body.
> > >
> >
> > ------------------------------------------------------------------------
> > ------
> > Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or send a message to [EMAIL PROTECTED] with
> > 'unsubscribe' in the body.
> >
>
> ------------------------------------------------------------------
> ----------
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> ------------------------------------------------------------------
> ----------
> --
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> ------_=_NextPart_001_01C00C44.1E5D7688
> Content-Type: text/html;
>       charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
> <HTML>
> <HEAD>
> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
> charset=3Diso-8859-1">
> <META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
> 5.5.2650.12">
> <TITLE>RE: Problem with CFFTP</TITLE>
> </HEAD>
> <BODY>
>
> <P><FONT SIZE=3D2>Users can simply right click on the &quot;link&quot; =
> and select the option: &quot;save target as...&quot; and it will bring =
> up the save dialog box and give them the option to save it on their =
> system....I use this on our intranet and it works just fine.</FONT></P>
>
> <P><FONT SIZE=3D2>It requires some user education (always a perilous =
> and onerous undertaking)....but that, coupled with a rather large font =
> size: Right Click to Download</FONT></P>
>
> <P><FONT SIZE=3D2>seems to work for us!!</FONT>
> </P>
>
> <P><FONT SIZE=3D2>Jon</FONT>
> <BR><FONT SIZE=3D2>-----Original Message-----</FONT>
> <BR><FONT SIZE=3D2>From: Andy Ewings [<A =
> HREF=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]=
> uk</A>]</FONT>
> <BR><FONT SIZE=3D2>Sent: Tuesday, August 22, 2000 9:30 AM</FONT>
> <BR><FONT SIZE=3D2>To: '[EMAIL PROTECTED]'</FONT>
> <BR><FONT SIZE=3D2>Subject: RE: Problem with CFFTP</FONT>
> </P>
> <BR>
>
> <P><FONT SIZE=3D2>Ok, I tried it and unfortunately it loaded it into =
> the browser as a word</FONT>
> <BR><FONT SIZE=3D2>document.&nbsp; Any ideas as to the direction I need =
> to point my heroic efforts</FONT>
> <BR><FONT SIZE=3D2>in order to prompt the user to download the =
> file?!</FONT>
> </P>
>
> <P><FONT SIZE=3D2>-----Original Message-----</FONT>
> <BR><FONT SIZE=3D2>From: David E. Crawford [<A =
> HREF=3D"mailto:[EMAIL PROTECTED]">mailto:dcrawford@yalesecurity=
> .com</A>]</FONT>
> <BR><FONT SIZE=3D2>Sent: 22 August 2000 14:18</FONT>
> <BR><FONT SIZE=3D2>To: [EMAIL PROTECTED]</FONT>
> <BR><FONT SIZE=3D2>Subject: Re: Problem with CFFTP</FONT>
> </P>
> <BR>
>
> <P><FONT SIZE=3D2>Keep in mind that with IE and MS-Word, Powerpoint, =
> Excel, it sometimes takes</FONT>
> <BR><FONT SIZE=3D2>heroic efforts to overcome the M$ natural tendency =
> to display the document</FONT>
> <BR><FONT SIZE=3D2>in the browser, as opposed to force a =
> download.</FONT>
> </P>
>
> <P><FONT SIZE=3D2>DC</FONT>
> </P>
>
> <P><FONT SIZE=3D2>----- Original Message -----</FONT>
> <BR><FONT SIZE=3D2>From: &quot;David E. Crawford&quot; =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>To: &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>Sent: Tuesday, August 22, 2000 13:14</FONT>
> <BR><FONT SIZE=3D2>Subject: Re: Problem with CFFTP</FONT>
> </P>
> <BR>
>
> <P><FONT SIZE=3D2>&gt; To a certain extent that is true.&nbsp; However, =
> by setting the appropriate</FONT>
> <BR><FONT SIZE=3D2>&gt; MIME</FONT>
> <BR><FONT SIZE=3D2>&gt; type for the document you can force the browser =
> to &quot;save&quot; it rather than</FONT>
> <BR><FONT SIZE=3D2>&gt; rendering it.</FONT>
> <BR><FONT SIZE=3D2>&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; DC</FONT>
> <BR><FONT SIZE=3D2>&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; ----- Original Message -----</FONT>
> <BR><FONT SIZE=3D2>&gt; From: &quot;Andy Ewings&quot; =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; To: &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; Sent: Tuesday, August 22, 2000 13:12</FONT>
> <BR><FONT SIZE=3D2>&gt; Subject: RE: Problem with CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; I thought &lt;CFContent&gt; basically =
> allows the user to read non HTML files</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; in</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; their browser window (after all the =
> browser is just a container).&nbsp; I</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; don't</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; want to open the file in their browser, =
> just let them save it to their</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; hard</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; drive and open it up in word (it's a word =
> doc)</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; -----Original Message-----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; From: David E. Crawford [<A =
> HREF=3D"mailto:[EMAIL PROTECTED]">mailto:dcrawford@yalesecurity=
> .com</A>]</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; Sent: 22 August 2000 14:05</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; To: [EMAIL PROTECTED]</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; Subject: Re: Problem with CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &lt;CFCONTENT&gt; causes CF to read a file =
> from the web server and &quot;push&quot; it</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; to</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; the client via the browser.&nbsp; =
> &lt;CFFILE&gt; lets you move files around on</FONT>
> <BR><FONT SIZE=3D2>&gt; the</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; web</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; server, including creating, renaming, =
> copying and deleting.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; DC</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; ----- Original Message -----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; From: &quot;Andy Ewings&quot; =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; To: =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; Sent: Tuesday, August 22, 2000 =
> 13:02</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; Subject: RE: Problem with CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Oh ok....but I still don;t =
> see/understand how you move files from</FONT>
> <BR><FONT SIZE=3D2>&gt; the</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; web</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; server to the client using =
> cffile/cfcontent.&nbsp; I would have thought</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; cfftp</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; would have done this by the nature of =
> it's name!&nbsp; Anyone show me</FONT>
> <BR><FONT SIZE=3D2>&gt; what</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; to</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; do?!</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; -----Original Message-----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; From: David E. Crawford [<A =
> HREF=3D"mailto:[EMAIL PROTECTED]">mailto:dcrawford@yalesecurity=
> .com</A>]</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Sent: 22 August 2000 13:56</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; To: [EMAIL PROTECTED]</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Subject: Re: Problem with =
> CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; They already have the ability to =
> specify where it is saved.&nbsp; That is</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; completely a client function.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; DC</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; ----- Original Message -----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; From: &quot;Andy Ewings&quot; =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; To: =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Sent: Tuesday, August 22, 2000 =
> 12:52</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Subject: RE: Problem with =
> CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Oh.....</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; How do I do that?&nbsp; What I =
> am trying to do is let the user download</FONT>
> <BR><FONT SIZE=3D2>&gt; a</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; specific file from the web =
> server to there Hard drive but I want</FONT>
> <BR><FONT SIZE=3D2>&gt; to</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; let</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; them</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; choose where to save it.&nbsp; =
> Have you got any code that will do this?</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; -----Original =
> Message-----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; From: Kevin Schmidt [<A =
> HREF=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>]</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Sent: 22 August 2000 =
> 14:28</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; To: =
> [EMAIL PROTECTED]</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Subject: Re: Problem with =
> CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Yeah,&nbsp; You can't use CFFTP =
> to move files between the cfserver and</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; browser.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Only between the FTP server and =
> CF server.&nbsp; You have to use CFFILE</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; and</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; CFCONTENT to upload and download =
> from the browser to the server</FONT>
> <BR><FONT SIZE=3D2>&gt; and</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; then</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; from the server to the FTP =
> server and vice versa.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; ----- Original Message =
> -----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; From: &quot;Andy Ewings&quot; =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; To: &quot;CFTalk (E-mail)&quot; =
> &lt;[EMAIL PROTECTED]&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Sent: Tuesday, August 22, 2000 =
> 5:56 AM</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Subject: Problem with =
> CFFTP</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; I have a problem with =
> CFFTP.&nbsp; I am trying to use CFFTP to</FONT>
> <BR><FONT SIZE=3D2>&gt; download</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; a</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; file</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; onto a user hard =
> drive.&nbsp; When the user clicks a button the web</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; site</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; creates</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; a file using CFFILE and =
> then tries to download it to C:\temp</FONT>
> <BR><FONT SIZE=3D2>&gt; using</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; CFFTP.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; However all it is doing is =
> saving it to C:\Temp on the web</FONT>
> <BR><FONT SIZE=3D2>&gt; server!</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Here</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; is</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; my code....</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; &lt;cfftp =
> action=3D&quot;open&quot; username=3D&quot;&lt;username&gt;&quot; =
> password=3D&quot;&lt;password&gt;&quot;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; =
> server=3D&quot;&lt;servername&gt;&quot; connection=3D&quot;temp&quot; =
> stoponerror=3D&quot;no&quot;&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; &lt;cfoutput&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Open Error Code: =
> #cfftp.errorcode#</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Open Error Text: =
> #cfftp.errortext#</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; &lt;/cfoutput&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; &lt;cfftp =
> connection=3D&quot;temp&quot; action=3D&quot;GETFILE&quot;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; =
> localfile=3D&quot;c:\temp\test.doc&quot;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; =
> remotefile=3D&quot;#thisdirectory#TestFile.htm&quot; =
> transfermode=3D&quot;BINARY&quot;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; =
> failifexists=3D&quot;No&quot; stoponerror=3D&quot;No&quot;&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Download Error Code: =
> #cfftp.errorcode#&lt;br&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Download Error Text: =
> #cfftp.errortext#&lt;br&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; &lt;/cfoutput&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; &lt;cfftp =
> action=3D&quot;CLOSE&quot; connection=3D&quot;cv&quot;&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Both FTP operations =
> succeed.&nbsp; Anyone have any ideas?</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------</FONT=
> >
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Andrew Ewings</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Project Manager</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Thoughtbubble Ltd</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------</FONT=
> >
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; --</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; ----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; or</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; 'unsubscribe'</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; in</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; the body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; ----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; --</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; or</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; 'unsubscribe'</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; in</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; the body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; ------</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; or send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt; 'unsubscribe' in the =
> body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; ----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; --</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; or</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; 'unsubscribe'</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; in</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; the body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; ------</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; or send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt; 'unsubscribe' in the body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; ----</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; --</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; or</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; send a message to =
> [EMAIL PROTECTED] with 'unsubscribe'</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; in</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; the body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; ------</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; <A HREF=3D"http://www.houseoffusion.com/index.cf=
> m?sidebar=3Dlists&body=3Dlists/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; or send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt; 'unsubscribe' in the body.</FONT>
> <BR><FONT SIZE=3D2>&gt; &gt;</FONT>
> <BR><FONT SIZE=3D2>&gt;</FONT>
> <BR><FONT SIZE=3D2>&gt; =
> ------------------------------------------------------------------------=
> </FONT>
> <BR><FONT SIZE=3D2>&gt; ------</FONT>
> <BR><FONT SIZE=3D2>&gt; Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>&gt; To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2>&gt; <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A></FONT>
> <BR><FONT SIZE=3D2>&gt; or send a message to =
> [EMAIL PROTECTED] with</FONT>
> <BR><FONT SIZE=3D2>&gt; 'unsubscribe' in the body.</FONT>
> <BR><FONT SIZE=3D2>&gt;</FONT>
> </P>
>
> <P><FONT =
> SIZE=3D2>---------------------------------------------------------------=
> -------------</FONT>
> <BR><FONT SIZE=3D2>--</FONT>
> <BR><FONT SIZE=3D2>Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>To Unsubscribe visit</FONT>
> <BR><FONT SIZE=3D2><A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A> or</FONT>
> <BR><FONT SIZE=3D2>send a message to [EMAIL PROTECTED] =
> with 'unsubscribe' in</FONT>
> <BR><FONT SIZE=3D2>the body.</FONT>
> <BR><FONT =
> SIZE=3D2>---------------------------------------------------------------=
> ---------------</FONT>
> <BR><FONT SIZE=3D2>Archives: <A =
> HREF=3D"http://www.mail-archive.com/cf-talk@houseoffusion.com/" =
> TARGET=3D"_blank">http://www.mail-archive.com/cf-talk@houseoffusion.com/=
> </A></FONT>
> <BR><FONT SIZE=3D2>To Unsubscribe visit <A =
> HREF=3D"http://www.houseoffusion.com/index.cfm?sidebar=3Dlists&body=3Dli=
> sts/cf_talk" =
> TARGET=3D"_blank">http://www.houseoffusion.com/index.cfm?sidebar=3Dlists=
> &body=3Dlists/cf_talk</A> or send a message to =
> [EMAIL PROTECTED] with 'unsubscribe' in the =
> body.</FONT></P>
>
> </BODY>
> </HTML>
> ------_=_NextPart_001_01C00C44.1E5D7688--
> ------------------------------------------------------------------
> ------------
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

----------------------------------------------------------------------------
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to