用XMlhttp生成html页面
时间:2007-08-29 19:49:00
用XMlhttp生成html页面,相关函数如下:
<%
’定义xmlhttp
function GetXmlText(Url)
dim GetXmlHttp
set GetXmlHttp=server.Createobject("Microsoft.XMLHTTP")
GetXmlHttp.open "Get",url,false,"","" GetXmlHttp.Send
’GetXmlText=GetXmlHttp.Responsetext
GetXmlText=GetXmlHttp.ResponseBody
set GetXmlHttp=Nothing
end function
’转换为字符
Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
’保存文件
Sub SaveToFile(strBody,File)
Dim objStream
Set objStream = Server.CreateObject("ADODB.Stream")
With objStream
.Type = 2
.Open
.Charset = "GB2312"
.Position = objStream.Size
.WriteText = strBody
.SaveToFile Server.MapPath(File),2
.Close
End With
Set objStream = Nothing End Sub
%>
使用方法:
<%SaveToFile BytesToBstr(GetXmlText("http://127.0.0.1/index.asp"),"GB2312"),"index.htm")%>
标签:XMlhttp,html
0
投稿
猜你喜欢
Python pandas之多级索引取值详解
2022-05-09 14:12:31
pytorch 实现在预训练模型的 input上增减通道
2023-12-02 00:49:33
TensorFlow MNIST手写数据集的实现方法
2022-12-19 19:45:02
MySQL数据库的root口令恢复方法总结
2009-08-19 09:03:00
python中如何实现径向基核函数
2023-11-28 02:48:45
pyx文件 生成pyd 文件用于 cython调用的实现
2022-09-17 13:54:32
如何在Vue项目中应用TypeScript类
2023-07-02 16:51:36
树莓派用python中的OpenCV输出USB摄像头画面
2023-11-04 12:12:49
Python 忽略文件名编码的方法
2021-06-11 15:16:55
Python实现自动添加脚本头信息的示例代码
2022-07-02 18:12:42
[翻译]标记语言和样式手册 Chapter 1 清单
2008-01-15 10:26:00
使用Python编写一个模仿CPU工作的程序
2021-04-28 05:28:25
Python装饰器原理与基本用法分析
2023-04-29 10:46:32
详解TensorFlow训练网络两种方式
2021-06-24 00:18:23
golang 网络框架之gin的使用方法
2023-07-19 02:35:37
js判断undefined类型示例代码
2024-04-19 09:53:35
Go语言中sync.Cond使用详解
2024-04-25 15:28:23
JavaScript 组件之旅(三):用 Ant 构建组件
2009-10-09 16:56:00
解析:安装 MySQL时如何选择安装软件包
2008-12-31 17:15:00
python实现TCP服务器端与客户端的方法详解
2023-05-17 09:39:39