I want to use HTML pages in a Windows application using C#.
Can anyone help me?
I want to use HTML pages in a Windows application using C#.
Can anyone help me?
http://www.switchonthecode.com/tutorials/csharp-snippet-tutorial-the-web-browser-control
This basically puts a browser inside of your app, which is useful.
Maybe you only want the content of the html from a page. That would be WebClient
Drag a WebBrowser control onto your form. Then you can set the HTML like this:
webBrowser1.DocumentText = "<html><body>Hello, World!</body></html>";