Following can get you html from a url without opening IE.
using(WebClient client = new WebClient()) {
string html = client.DownloadString(address);
}
To open IE for a particular URL you can do :System.Diagnostics.Process.Start("iexplore", "http://example.com");
Comments
Post a Comment