Dear C#dex,
You can automate a POST and interrogate the resulting HTTP stream using
code such as:
HttpWebRequest hwreq = (HttpWebRequest )WebRequest.Cre ate(url);
hwreq.Method = "POST";
hwreq.ContentTy pe = "applicatio n/x-www-form-urlencoded";
hwreq.ContentLe ngth = buffer.Length;
hwreq.Proxy = new WebProxy("Glori adias", true);
hwreq.CookieCon tainer = new CookieContainer ();
Stream RequestStream = hwreq.GetReques tStream();
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.
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Comment