服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - ASP 中使用 HTTP 协议发送参数详解

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

2019-10-29 14:55asp教程网 ASP教程

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

  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>  

延伸 · 阅读

精彩推荐