ASP代理采集的核心函数代码

来源:asp之家 时间:2010-01-02 20:43:00 

asp代理采集代码如下:

<%
Function ProxyPage(url) 
Set Retrieval = CreateObject("MSXML2.ServerXMLHTTP.5.0") 
With Retrieval 
.SetProxy 2 , "255.0.0.0:80" '代理ip:代理端口 
.Open "Get", url, False, "", "" 
.setRequestHeader "Referer","http://www.aspxhome.com" '伪造referer 
.Send 
ProxyPage = BytesToBstr(.ResponseBody) 
End With 
Set Retrieval = Nothing 
End Function 
'附BytesToBstr过程,采集的时候可以定义网页是utf-8还是gb2312,utf="True"为utf-8 
Function BytesToBstr(body) 
dim objstream 
set objstream = Server.CreateObject("ad"&""&"odb.st"&""&"ream") 
objstream.Type = 1 
objstream.Mode =3 
objstream.Open 
objstream.Write body 
objstream.Position = 0 
objstream.Type = 2 
if utf = "True" then 
objstream.Charset = "utf-8" 
else 
objstream.Charset = "gb2312" 
end if 
BytesToBstr = objstream.ReadText 
objstream.Close 
set objstream = nothing 
End Function
%> 

代码解释:

1、如果系统是win 2003,只能使用以下代码:

CreateObject("MSXML2.ServerXMLHTTP.4.0") 

如果是xp,则使用:

CreateObject("MSXML2.ServerXMLHTTP.5.0") 


 

标签:采集,代理,函数,asp
0
投稿

猜你喜欢

  • python检测lvs real server状态

    2021-12-12 21:21:36
  • SQL Server远程定时备份数据库脚本分享

    2024-01-24 12:20:31
  • 在网页中显示可拖动月历

    2010-07-13 12:09:00
  • BluePrint CSS框架0.9版发布

    2009-06-03 21:02:00
  • Spring数据库事务的实现机制讲解

    2024-01-19 11:32:10
  • 最近Python有点火? 给你7个学习它的理由!

    2021-08-03 01:40:05
  • ASP.NET中使用SQL存储过程的方法

    2007-08-24 09:31:00
  • IE地址栏显示网站图标制作方法

    2007-10-13 11:08:00
  • python实现颜色rgb和hex相互转换的函数

    2021-10-05 23:18:13
  • php发送get、post请求的6种方法简明总结

    2023-11-14 12:59:43
  • torch.optim优化算法理解之optim.Adam()解读

    2023-06-24 23:30:25
  • 对Python的Django框架中的项目进行单元测试的方法

    2021-02-23 03:17:04
  • Python设计模式中的结构型适配器模式

    2023-07-19 11:59:54
  • Python3 导入上级目录中的模块实例

    2023-09-01 02:25:20
  • python全局变量引用与修改过程解析

    2021-12-13 18:55:37
  • Python正则表达re模块之findall()函数详解

    2021-04-20 05:00:16
  •  分享Python 中的 7 种交叉验证方法

    2023-09-18 19:10:33
  • XMLHTTP获取web造访头信息和网页代码

    2010-04-01 14:37:00
  • MATLAB中text函数使用的语法与示例代码

    2022-09-29 00:21:38
  • vue圆环百分比进度条组件功能的实现

    2024-06-07 15:19:57
  • asp之家 网络编程 m.aspxhome.com