How to use ASP to obtain the HTML code of a webpage

Source: Internet
Author: User
Private function bytes2bstr (VIN) 'string Function
Dim I, thischrcode, nextchrcode
Strreturn = ""
For I = 1 to lenb (VIN)
Thischrcode = ASCB (midb (Vin, I, 1 ))
If thischrcode <& h80 then
Strreturn = strreturn & CHR (thischrcode)
Else
Nextchrcode = ASCB (midb (VIN, I + 1, 1 ))
Strreturn = strreturn & CHR (clng (thischrcode) * & h100 + CINT (nextchrcode ))
I = I + 1
End if
Next
Bytes2bstr = strreturn
End Function

Function geturl (URL) 'character-based XMLHTTP
Set retrieval = server. Createobject ("Microsoft. XMLHTTP ")
With Retrieval
. Open "Post", URL, false ,"",""
. Send
Geturl =. responsetext
Geturl = bytes2bstr (. responsebody)
End
Set retrieval = nothing
End Function

This is the case when it is used.
STRs = geturl ("http://www.xxxx.com ")
STRs is the source code # ASP Column

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.