Posts Tagged ‘asp’

ASP保存远程文件到本地(比较实用)

一月 18th, 2010 No comments
<%
Function SaveRemoteFile(LocalFileName,RemoteFileUrl)
SaveRemoteFile=True
dim Ads,Retrieval,GetRemoteData
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", RemoteFileUrl, False, "", ""
.Send
If .Readystate<>4 then
SaveRemoteFile=False
Exit Function
End If
GetRemoteData = .ResponseBody
End With
Set Retrieval = Nothing
Set Ads = Server.CreateObject("Adodb.Stream")
With Ads
.Type = 1
.Open
.Write GetRemoteData
.SaveToFile server.MapPath(LocalFileName),2
.Cancel()
.Close()
End With
Set Ads=nothing
End Function
%>
<%
‘以下为调用示例:
remoteurl="localfile=Replace(Replace(Replace(Now(),"-","")," ",""),":","")&Right(remoteurl,4)’本机文件名(可自定义)
If SaveRemoteFile(localfile,remoteurl)=True Then
Response.Write("成功保存:"&localfile)
End If
%>

ASP无组件上传,带进度多文件

一月 2nd, 2010 No comments

网络收集的一个asp上传文件的程序,可以显示进度条,并且支持多文件。在此记录一下,以后使用方便查找。
Read more…