Software Development Network>> Visual C#>> How can I display a .mht file on a webBrwoser control?
you need to set WebBrowser's Url property to location of mht file
webBrowser1.Url = new Uri(@"d:\test.mht");
webBrowser1.Url =
hope this helps
How can I display a .mht file on a webBrwoser control?
FSchmid
you need to set WebBrowser's Url property to location of mht file
hope this helps