how to open IExplorer
i have used this code and an error has occured C:\Documents and Settings\sajid\Desktop\web browser\Form1.cs(102): The type or namespace name 'webbrowser' could not be found (are you missing a using directive or an assembly reference?)
tell me how to remove it
The WebBrowser class comes under the System.Windows.Forms namespace. Just insert the using System.Windows.Forms directives on top of the file, if it isn't already there.
If you're trying to open Internet Explorer through C#, try this:
System.Diagnostics.
Process.Start("IExplore", "http://www.microsoft.com");Hope that helps. :)