Inet in C# ?
-
Hi, How can I use this command in C# ? Inet.Execute "http://200.100.100.100/econtrol.html", "POST", "P1=t" Best Regrads youssef
-
Hi, How can I use this command in C# ? Inet.Execute "http://200.100.100.100/econtrol.html", "POST", "P1=t" Best Regrads youssef
-
Hi, How can I use this command in C# ? Inet.Execute "http://200.100.100.100/econtrol.html", "POST", "P1=t" Best Regrads youssef
Using the
HttpWebRequest
andHttpWebResponse
classes.
website // Project : AmmoITX //profile Another Post by NnamdiOnyeyiri
-
Using the
HttpWebRequest
andHttpWebResponse
classes.
website // Project : AmmoITX //profile Another Post by NnamdiOnyeyiri
-
Hi, How can I use this command in C# ? Inet.Execute "http://200.100.100.100/econtrol.html", "POST", "P1=t" Best Regrads youssef
If you don't want to go the programatic way and if this inet thingie is an exe which accepts command line params: System.Diagnostics.Process.Start(@"C:\Path\inet.exe", @"http://200.100.100.100/econtrol.html POST P1=t"); ;)
-
Hi, How can I use this command in C# ? Inet.Execute "http://200.100.100.100/econtrol.html", "POST", "P1=t" Best Regrads youssef
Why this code doesn't working ? Is it correct ? using system.net; System.Net.WebRequest req = null; System.Net.WebResponse rsp = null; try { req = System.Net.WebRequest.Create("http://200.100.100.100/econtrol.html?P8=t"); req.Method = "POST"; req.Timeout = 5000; } catch (Exception ex2) { string sErr = "Cannot connect to Internet. " + ex2.Message; } youssef