J
James Johnson
Dear C#dex,
You can automate a POST and interrogate the resulting HTTP stream using
code such as:
HttpWebRequest hwreq = (HttpWebRequest)WebRequest.Create(url);
hwreq.Method = "POST";
hwreq.ContentType = "application/x-www-form-urlencoded";
hwreq.ContentLength = buffer.Length;
hwreq.Proxy = new WebProxy("Gloriadias", true);
hwreq.CookieContainer = new CookieContainer();
Stream RequestStream = hwreq.GetRequestStream();
Is it possible to automate an FTP request such that you copy a web page
to a web site automatically using a known FTP login?
Thanks,
James J.
You can automate a POST and interrogate the resulting HTTP stream using
code such as:
HttpWebRequest hwreq = (HttpWebRequest)WebRequest.Create(url);
hwreq.Method = "POST";
hwreq.ContentType = "application/x-www-form-urlencoded";
hwreq.ContentLength = buffer.Length;
hwreq.Proxy = new WebProxy("Gloriadias", true);
hwreq.CookieContainer = new CookieContainer();
Stream RequestStream = hwreq.GetRequestStream();
Is it possible to automate an FTP request such that you copy a web page
to a web site automatically using a known FTP login?
Thanks,
James J.