How to get Web page source code with ASP code

Source: Internet
Author: User
Tags domain server

In the use of Ajax, we can not cross-domain to get the data of the server does not belong to, it leads to such a way to get:

1. Request data from the Web page in this domain, including a URL information

2. ASP code in the requested domain's Web page requests data from the cross-domain server and then returns it to the ASP file in the domain


Code:

123456789101112 Function getHtml(url) ‘以HTML格式备份    Set xh = CreateObject("Microsoft.XMLHTTP")    xh.Open"GET",url,0    xh.Send()    Set MyStream=CreateObject("Adodb.Stream")    MyStream.Type =2    MyStream.Open    MyStream.WriteText xh.responseText    MyStream.Position =0    getHtml=MyStream.ReadText    MyStream.CloseEnd Function

Above theSource Codeis a comprehensive online description of the Microsoft.XMLHTTP object and the description of ADODB.stream self-written, for the original code.

How to get Web page source code with ASP code

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.