服务器之家

服务器之家 > 正文

ASP 中使用 HTTP 协议发送参数详解

时间:2019-10-29 14:55     来源/作者:asp教程网
  1. <%@LANGUAGE=“VBSCRIPT“ CODEPAGE=“CP_ACP“%>  
  2.     <html>  
  3.     <head>  
  4.     <meta http-equiv=“Content-Type“ content=“text/html; charset=Shift-JIS“>  
  5.     <SCRIPT LANGUAGE=“JavaScript“>  
  6.     <!--  
  7.      function SelText(){  
  8.       var oRangeRef = document.body.createTextRange();  
  9.       alert(oRangeRef.text);  
  10.      }  
  11.     //-->  
  12.     </SCRIPT>  
  13.     <%  
  14.     function getHTTPPage(url)  
  15.         dim Http  
  16.         set Http=server.createobject(“MSXML2.XMLHTTP“)  
  17.         'Http.open “GET“,url,false  
  18.      Http.open “POST“,url,false  
  19.         Http.send()  
  20.         if Http.readystate<>4 then  
  21.             exit function  
  22.         end if  
  23.         'getHTTPPage=bytesToBSTR(Http.responseBody,“GB2312“)  
  24.      getHTTPPage=bytesToBSTR(Http.responseBody,“Shift-JIS“)  
  25.         set http=nothing  
  26.         if err.number<>0 then  
  27.      err.Clear  
  28.      end if  
  29.     end function  
  30.  
  31.     Function BytesToBstr(body,Cset)  
  32.             dim objstream  
  33.             set objstream = Server.CreateObject(“adodb.stream“)  
  34.             objstream.Type = 1  
  35.             objstream.Mode =3  
  36.             objstream.Open  
  37.             objstream.Write body  
  38.             objstream.Position = 0  
  39.             objstream.Type = 2  
  40.             objstream.Charset = Cset  
  41.             BytesToBstr = objstream.ReadText  
  42.             objstream.Close  
  43.             set objstream = nothing  
  44.  
  45.     End Function  
  46.     %>  
  47.  
  48.     <title></title>  
  49.     </head>  
  50.  
  51.     <body onload=“SelText()“>  
  52.     <%  
  53.     Dim Url,Html  
  54.     'Url=“http://localhost/CSharpWebAppTest/WebForm1.aspx?tmp=33333“  
  55.     'Url=“http://localhost/CSharpWebAppTest/WebForm1.aspx“  
  56.     Url= “http://www.whois.sc/221.216.169.120“  
  57.     'Url=“http://localhost/akira/default.asp“  
  58.     Html = getHTTPPage(Url)  
  59.     Response.write Html  
  60.     %>  
  61.     </body>  
  62.     </html>  
标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部