Hi,
I have some html codes, and I need to present the rendered html page to user
in winform program. I cannot find a helpful control in .NET framework. How
to do that in .NET 2.0?

Thank you

Re: Display html page in winform(.NET 2.0) by zlf

zlf
Tue May 29 21:47:01 CDT 2007

I got it.

The following code works well:
WebBrowser webBrowser1;
// do initialization

this.webBrowser1.Navigate("about:blank");
HtmlDocument doc = this.webBrowser1.Document;
doc.Write("<html>sdfsdf<br>sdfsdf<b>sdfsdf</b></html>");

"zlf" <zlfcn@hotmail.com> дÈëÏûÏ¢ÐÂÎÅ:estIWOmoHHA.4188@TK2MSFTNGP02.phx.gbl...
> Hi,
> I have some html codes, and I need to present the rendered html page to
> user in winform program. I cannot find a helpful control in .NET
> framework. How to do that in .NET 2.0?
>
> Thank you
>