I want to open Internet Explorer from C# Application - How to do this?

  • Thread starter Thread starter Anand Ganesh
  • Start date Start date
A

Anand Ganesh

I have an .html file which I have to Launch from my C# application. I want
to open Internet Explorer and show that .html file in it. Can anyone please
suggest how to do this?

Thanks for your time

Regards
Anand Ganesh
 
I have an .html file which I have to Launch from my C# application. I want
to open Internet Explorer and show that .html file in it. Can anyone please
suggest how to do this?

Thanks for your time

System.Diagnostics.Process.Start("myURL here");

FB
 
Back
Top