您的位置:首页 > 其它

关于文件下载

2004-08-11 14:35 369 查看
<%
function dl(f,n)

on error resume next
Dim S
Set S=CreateObject("Adodb.Stream")
S.Mode=3
S.Type=1
S.Open
S.LoadFromFile(server.mappath(f))
if Err.Number>0 then
Response.Status="404"
else
Response.ContentType="application/*"
Response.AddHeader "Content-Disposition:","attachment; filename=" & n
Range=Mid(Request.ServerVariables("HTTP_RANGE"),7)
if Range="" then
Response.BinaryWrite(S.Read)
else
'S.position=Clng(Split(Range,"-")(0))
Response.BinaryWrite(S.Read)
End if
end if
Response.End
end function

If request("action")="down" Then
call dl(request("path"),"aa.gif")
End If

%>
<img src=index.gif>
<a href=?action=down&path=index.gif>点击下载此图片</a>

<SCRIPT language=JavaScript>
function aa(tt)
{
var wp = window.open(tt.src,"","width=100,height=100");
wp.document.execCommand("saveAs");
}
</SCRIPT>
<IMG onclick=aa(this) alt=单击保存 src="../face/0001.gif" border=0>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: