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,414
  • 18
  • 62
  • 93

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
  • 15,673
  • 14
  • 84
  • 131