I'm working on a project which will be sending a data stream to a remote web server in the form of an encoded URL. The web gurus showed me their suggested method which uses something like this:
We're sending the name and location of a file the remote server will pickup. The problem with this is it starts an instance of IE or uses the existing instance of it and opens a new tab. After a few hours of this we're going to have about 100 new tqbs opened. Is there a way to close these newly opened tabs or possibly avoid opening them in the first place?
Code:
System.Diagnostics.Process.Start(""www.remotedomain.....etc")