Any Suggestions on how to allow the File Download Dialog box be with the correct information.
> After I call the CFCONTENT the following CFLOCATION does not work. The file is downloaded properly but nothing I put after CFCONTENT seems to process. Is there a way either stop the CFCONTENT after the file is loaded or force a page refresh after CFONTENT?
>
> <!--- Download file to Client --->
> <cfif form.DownLoadFile is not "">
>
> <cfheader name="Content-disposition" value="attachment; filename=""#form.DownLoadFile#""">
>
> <CFCONTENT FILE="#AbsoluteDirectory##FTPDirectory##form.DownLoadFile#" type="text/html">
>
> <cflocation url="nextpage.cfm">
>
> </cfif>