08-13-2010, 02:54 PM
Visible
Invisible
the visible visit. is starting the process with the default browser.
and the invisible visit is using http web requests.
the invisible visit can be used to connect to web panels.
anything.
Code:
Process.Start(URC);
Invisible
Code:
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(URC);
req.GetResponse();
the visible visit. is starting the process with the default browser.
and the invisible visit is using http web requests.
the invisible visit can be used to connect to web panels.
anything.