ASP实现小偷程序原理和简单示例(2)_ASP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:有用的无声递交表单的客户端函数
采用Microsoft.XMLHTTP提交数据的形式实现客户端无刷新 以下为引用的内容: <SCRIPT LANGUAGE="vbScript"> dim i,strR

'2、转换乱玛,直接用xmlhttp调用有中文字符的网页得到的将是乱玛,可以通过adodb.stream组件进行转换

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

'下面试着调用http://www.3doing.com/earticle/的html内容

Dim Url,Html
Url="http://www.3doing.com/earticle/"
Html = getHTTPPage(Url)
Response.write Html
%>

分享:ASP技巧:禁用页面缓存的五种方法
1、在Asp页面首部<head>加入 以下为引用的内容: Response.Buffer = True Response.ExpiresAbsolute = Now() - 1 Resp

共2页上一页12下一页
来源:模板无忧//所属分类:ASP教程/更新时间:2008-08-22
相关ASP教程