Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# webbrowser write html to text file

//Create the WebBrowser control
WebBrowser wb = new WebBrowser();
//Add a new event to process document when download is completed   
wb.DocumentCompleted +=
    new WebBrowserDocumentCompletedEventHandler(DisplayText);
//Download the webpage
wb.Url = urlPath;
Source by www.codeproject.com #
 
PREVIOUS NEXT
Tagged: #webbrowser #write #html #text #file
ADD COMMENT
Topic
Name
5+6 =