Using HTTP protocol to send parameters in ASP _asp Foundation

Source: Internet
Author: User
<% @LANGUAGE = "VBSCRIPT" codepage= "CP_ACP"%>
<meta http-equiv= "Content-type" content= "text/html; Charset=shift-jis ">
<script language= "JavaScript" >
<!--
function SelText () {
var orangeref = Document.body.createTextRange ();
alert (Orangeref.text);
}
-->
</SCRIPT>
<%
function gethttppage (URL)
Dim Http
Set Http=server.createobject ("MSXML2. XMLHTTP ")
' Http.open ' get ', url,false
Http.open "POST", Url,false
Http.send ()
If Http.readystate<>4 Then
Exit function
End If
' Gethttppage=bytestobstr (http.responsebody, "GB2312")
Gethttppage=bytestobstr (Http.responsebody, "Shift-jis")
Set http=nothing
If Err.number<>0 Then
Err. Clear
End If
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
%>

<title></title>

<body onload= "SelText ()" >
<%
Dim url,html
' Url= ' http://localhost/CSharpWebAppTest/WebForm1.aspx?tmp=33333 '
' Url= ' http://localhost/CSharpWebAppTest/WebForm1.aspx '
Url= "http://www.whois.sc/221.216.169.120"
' Url= ' http://localhost/akira/default.asp '
Html = Gethttppage (URL)
Response.Write Html
%>
</body>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.