Hi,
How can I use this command in C# ?
Inet.Execute " "POST", "P1=t"
Best Regrads
How can I use this command in C# ?
Inet.Execute " "POST", "P1=t"
Best Regrads
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int iThreadId=927761;
string strURL="[URL unfurl="true"]http://www.tek-tips.com";[/URL]
System.Net.WebRequest req = null;
try
{
req = WebRequest.Create(strURL+"/viewthread.cfm?qid=" + iThreadId.ToString());
req.Method = "GET";
req.Timeout = 20000;
//...
}
catch (Exception ex)
{
string sErr = "Cannot connect to " + strURL +" : " + ex.Message;
MessageBox.Show(sErr, strURL, MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
//..
req = WebRequest.Create("[URL unfurl="true"]http://200.100.100.100/econtrol.html?P1=t");[/URL]
req.Method = "POST";
//..