0

I am trying to navigate the webpage invisibly. I have tried this

Navigate2(Environment.GetEnvironmentVariable("appdata") + "\\track.html");

It navigates, but it shows the internet explorer window. How can I make it invisible ?

(edit: I dont want to get page content, it should navigate there)

user198989
  • 4,574
  • 19
  • 66
  • 95

1 Answers1

1

Navigate but neither display nor keep the page content? Just ignore the returned value (based on the duplicate I posted):

WebClient client = new WebClient();
client.DownloadString("http://www.gooogle.com");
// or
client.GetWebRequest("http://www.google.com");
MPelletier
  • 16,256
  • 15
  • 86
  • 137