TOGGIT - IN SEARCH OF CERTIFICATION
 TOGGIT
     IN SEARCH OF CERTIFICATION
    
     
  
TOGGIT IN SEARCH OF CERTIFICATION

Visual Basic .Net Sample Code and Applications

MAIN
Logon to ToggIT
Join ToggIT
Home
Home
Contact Us
Career Building
Certification Maps
Partners
Technopedia
.Net Source Code
Free Networking Tools
Free IT Publications
Microsoft
2003 Certifications
270 Win XP Pro
290 2003 Server
291 2003 Network Inf
293 Plan Network inf
294 2003 Active Directory
224 Exchange 2000
DBA Certifications
228 SQL 2000
229 SQL 2000
MCSD Certifications
526 Windows Apps
305 ASP.NET
2000 Certifications
210 Professional
215 Server
216 Network inf.
217 Directory Svc.
218 Managing 2K
219 Design Dir Svc.
220 Design Security
270 Win XP Pro
221 Design Net Inf.
Cisco
CCNA
CompTia
A+ Hardware 2003!
A+ Software 2003!
Network+
Security+
New Wireless
CWNP program
Java 
Java Goodies 



MCSE Top-Rated Sites



 

Join Toggit Now!
Avoid Annoying Ads!

 Your Email:

 New Password:

See the list of .Net articles
How do I get the HTML content of a web page (Screen Scraping)?

In a Visual basic .NET application you will sometimes need to get information from a web page. The first step to retrieving information from a web page is to get the HTML of the web page into a string that you can then process in your code.

This code involves two namespaces:

SYSTEM.NET includes classes used to access the web.

SYSTEM.IO includes the classes needed to read the response stream into a string.

This code works by creating an Http Web Request like a browser would when you type in a web address. The request is sent to the web server, and a web response is returned. The response object provides a response stream which contains the HTML of the page. A stream reader is used to flow the response into a string, where you can easily access it.
 

Dim URL as string = "http://www.somewebsite.com"
Dim
HRq As Net.HttpWebRequest = Net.WebRequest.Create(url)
Dim HRsp As Net.HttpWebResponse = HRq.GetResponse()
Dim sr As IO.StreamReader = New StreamReader(HRsp.GetResponseStream())
Dim HTM as string = sr.ReadToEnd()

 

When the code finishes, the string named HTM will contain the entire HTML code for the web page that you specified in the URL.

You can then process the HTML using string manipulation functions to get the specific data that you need from the web page.

 


Study and Research resources:
Microsoft Certification Info:
 
See the list of .Net articles

 

TOGGIT      IN SEARCH OF CERTIFICATION

All information on this site is copyright ToggIT.com unless otherwise specified. Material submitted or posted this site may also contain materials that are copyrights of individual contributors. It is illegal to copy, publish, reproduce, or distribute any materials from this site with the express permission of the owner of this material.

The material on this web site is not sponsored by, endorsed by or affiliated with Microsoft, Inc, CompTIA, or Cisco Systems, Inc. Microsoft, Inc.® ,Windows XP, Windows 2000, Windows 2000 Server, Windows 98, Windows NT, Visual Basic, Visual C++, Visual FoxPro, SQL server and Microsoft logos are trademarks or registered trademarks of Microsoft,  Inc. in the United States and certain other countries. A+, Server+, and Network+ are all registered trademarks of CompTIA. CCNA, CCNE, and the Cisco logo are all registered trademarks of Cisco Systems. All other trademarks are trademarks of their respective owners.