WebBrowser

  • Thread starter Thread starter Leonardo Spina
  • Start date Start date
L

Leonardo Spina

Does it exist a class which allows to view downloaded html files, like the
old WebBrowser control did?
Thanx!
 
if you add the webbrowser control to you toolbox, then drag the COM
component onto your form, the IDE will create the wrapper class for .NET.
it's really easy. any old COM Component can be used in the same way.

HTH
 
"Leonardo Spina" spoke:
Does it exist a class which allows to view downloaded html files,
like the old WebBrowser control did?

System.Net.WebClient or System.Net.(Http)WebRequest will do the trick.

Cheers,
 
Back
Top