<cfset ePath = CGI.QUERY_STRING />
<cfset oPath = URLDecode(CFusion_Decrypt(ePath, Session.UserName)) />
<cfset f = Right(oPath, Len(oPath) - Find("/", oPath, Find("/", oPath) + 1)) />
<cfheader name="Content-Disposition" value="attachment; filename=#f#" />
<cfcontent type="application/unknown" file="#oPath#" />
|