home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Pratica
/
IPRAT_01.iso
/
ASP
/
ASPFusion_Basic_Suite
/
examples
/
asp
/
advfile
/
act_download.asp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-09-22
|
302 b
|
13 lines
<%
set obj = server.CreateObject("AdvFile.File")
if (Request.Form("ForceFully") = "on") then
obj.DownloadForceFully = true
else
obj.DownloadForceFully = false
end if
obj.Download(Request.Form("Source"))
if (obj.IsError = 1) then
Response.Write obj.ErrorReason
end if
set obj = nothing
%>