devxlogo

Retrieve the textual or HTML text contained in a WebBrowser control

Here’s a quick way to retrieve the textual (that is, without any HTML tag) contents of a WebBrowser control:

Dim Text As StringText = WebBrowser1.Document.Body.InnerText

Getting the HTML text is a tad less intuitive, though:

Dim Text As StringText = WebBrowser1.Document.documentElement.OuterHTML

The following procedure let’s you save the contents of a WebBroser control to a file, as plain text or HTML text:

Sub SaveWebBrowser(WB As WebBrowser, ByVal FileName As String, _    Optional SaveAsPlainText As Boolean)    Dim Text As String, fnum As Integer    If SaveAsPlainText Then        Text = BW.Document.Body.innerHTML    Else        Text = BW.Document.documentElement.OuterHTML    End If    ' save to file    fnum = FreeFile    Open FileName For Output As #fnum    Print #fnum, Text;    Close #fnumEnd Sub    

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.