Code Script .co.uk

Home | Scripts | Tutorials | Disclaimer | Sitemap | Contact

   Webpage Url Html Capture
 

Vbscript / Web Servers / Webpage Url Html Capture

Address the URL of a webpage and capture the HTML as a string.



strURL = "http://www.bbc.co.uk"

Set objHTTP = CreateObject("MSXML2.XMLHTTP")
Call objHTTP.Open("GET", strURL, FALSE)
objHTTP.Send

strHTML = objHTTP.ResponseText
WScript.Echo(strHTML)





Please note that a disclaimer applies to any code on this page.
 
   Actions
  Go Back
  Bookmark
  Print Page


   Menu
 
- Links
- Reference
- Script Editors
- Tutorials
- Vbscript
     - Active Directory
     - Exchange
     - Files And Folders
     - General
     - Ms Office
     - Operating System
     - Processes And Services
     - Text Processing
     - User Interaction
     - Web Servers
          - Ftp Connect And Upload
          - Iis Create Website
          - Webpage Url Html Capture