devxlogo

Retrieve the textual or HTML text contained in a WebBrowser control

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    

devxblackblue

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.

About Our Journalist