|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;xml|数据由于要做挪动梦网WAP的一些接口,以是要用到这类体例,接上去会有ASP.net版本的,这个是ASP版本的,使用了MSXML2.XMLHTTP对像。
request.asp
dimHttps
setHttps=server.createobject("MSXML2.XMLHTTP")
界说一个XMLHTTP对像
Https.open"POST","http://127.0.0.1/testpost/response.asp",false
Https.send"echo1234569876541111122222"
ifHttps.readystate=4then
response.write"提交乐成"
readstate读取形态为4则乐成,持续前面的,不乐成固然就不必持续处置了
dimobjstream
setobjstream=Server.CreateObject("adodb.stream")
界说一个stream,由于读过去的间接拿出来是乱码的,以是得处置一下
objstream.Type=1
objstream.Mode=3
objstream.Open
objstream.WriteHttps.responseBody
objstream.Position=0
objstream.Type=2
objstream.Charset="GB2312"
html=objstream.ReadText
转好码,就放到html里,好封闭这些对像
objstream.Close
setobjstream=nothing
sethttps=nothing
endif
response.writehtml
response.asp
创立DOMDocument工具
Setxml=Server.CreateObject("msxml2.DOMDocument")
xml.async=False
装载POST数据
xml.LoadRequest
Ifxml.parseError.errorCode0Then
response.write"不克不及准确吸收数据"&"Description:"&xml.parseError.reason&"<br>Line:"&xml.parseError.Line
EndIf
setblogchild=xml.getElementsByTagName("misc_command")
the_text=blogchild.item(0).childnodes(1).text
the_text=blogchild.item(0).text
fori=0toblogchild.length-1
response.writethe_text
使用这类办法,ASP里挪用Servlet或WebService都是很轻松的!
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。 |
|