I am currently developing an application for my website (file downloader/updater) and I would like to create a block within my application that reads and displays a html web page from my website within the C# application.
This html/css page would be very simple (recent change log or dev blog).
How can I red and display the html page within my C# application?
For example, I want the html page content to be displayed in the blank space in this application http://puu.sh/5BFcv.png
If you're developing for Winforms/WPF, you should be able to use the standard
WebBrowser
control to display HTML. Although it's powered on IE7+ I believe, you stated that you only need to display a bit of data, so it'll probably work out fine.Or you can take a look at the HTML Renderer project on Codeplex and use that if the default
WebBrowser
control doesn't work out for you (broken pages).Also, a side note: For something as simple as a changelog delivering mechanism, I'd personally avoid using a Webbrowser to display HTML. Why not retrieve the changelog in plain text format and populate the information natively.
Sample code you can use to download a text file from a web server and set it as a label's text:
Or, if you want to make the downloading string part asynchronous (won't freeze the UI), you can do this:
Make sure to put a
using System.Net;
statement at the top of your code, or type it all out.