当前位置: 网学 > 编程文档 > ASP > 正文

newasp中下载类

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/17

网学网为需要ASP的朋友们搜集整理了newasp下载类相关资料,希望对各位网友有所帮助!

复制代码 代码如下:
<%
''================================================
'' 函数名:SaveRemoteFile
'' 作 用:保存远程文件到本地
'' 参 数:strFileName ----保存文件的名称
'' strRemoteUrl ----远程文件URL
'' 返回值:布尔值 True/False
''================================================
Function SaveRemoteFile(ByVal strFileName, ByVal strRemoteUrl)
Dim oStream, Retrieval, GetRemoteData

SaveRemoteFile = False
On Error Resume Next
Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
Retrieval.Open "GET", strRemoteUrl, False, "", ""
Retrieval.Send
If Retrieval.readyState <> 4 Then Exit Function
If Retrieval.Status > 300 Then Exit Function
GetRemoteData = Retrieval.ResponseBody
Set Retrieval = Nothing

If LenB(GetRemoteData) > 100 Then
Set oStream = Server.CreateObject("Adodb.Stream")
oStream.Type = 1
oStream.Mode = 3
oStream.Open
oStream.Write GetRemoteData
oStream.SaveToFile Server.MapPath(strFileName), 2
oStream.Cancel
oStream.Close
Set oStream = Nothing
Else
Exit Function
End If

If Err.Number = 0 Then
SaveRemoteFile = True
Else
Err.Clear
End If
End Function
%>

复制代码 代码如下:
<%
Class Download_Cls
Private sUploadDir
Private nAllowSize
Private sAllowExt
Private sOriginalFileName
Private sSaveFileName
Private sPathFileName

Public Property Get RemoteFileName()
RemoteFileName = sOriginalFileName
End Property

Public Property Get LocalFileName()
LocalFileName = sSaveFileName
End Property

Public Property Get LocalFilePath()
LocalFilePath = sPathFileName
End Property

Public Property Let RemoteDir(ByVal strDir)
sUploadDir = strDir
End Property

Public Property Let AllowMaxSize(ByVal intSize)
nAllowSize = intSize
End Property

Public Property Let AllowExtName(ByVal strExt)
sAllowExt = strExt
End Property

Private Sub Class_Initialize()
On Error Resume Next
Script_Object = "Scripting.FileSystemObject"
sUploadDir = "UploadFile/"
nAllowSize = 500
sAllowExt = "gif|jpg|png|bmp"
End Sub

Public Function ChangeRemote(sHTML)
On Error Resume Next
Dim s_Content
s_Content = sHTML
On Error Resume Next
Dim re, s, RemoteFileUrl, SaveFileName, SaveFileType
Set re = New RegExp
re.IgnoreCase = True
re.Global = True
re.Pattern = "((http|https|ftp|rtsp|mms):(\/\/|\\\\){1}(([A-Za-z0-9_-])+[.]){1,}(net|com|cn|org|cc|tv|[0-9]{1,3})(\S*\/)((\S)+[.]{1}(" & sAllowExt & ")))"
Set s = re.Execute(s_Content)
Dim a_RemoteUrl(), n, i, bRepeat
n = 0
'' 转入无重复数据
For Each RemoteFileUrl In s
If n = 0 Then
n = n + 1
ReDim a_RemoteUrl(n)
a_RemoteUrl(n) = RemoteFileUrl
  • 上一篇资讯: ubbcode函数
  • 下一篇资讯: newasp中main类
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号