January 13, 2006
Had to do some screen scraping...
string url = Request.Form["formaction"].ToString();
string result;
UTF8Encoding en = new UTF8Encoding();
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
req.Headers.Add("name", "\"blah\"");
req.ContentType = "text/html";
req.Accept = "text/html";
req.ContentLength = 0;
req.Method = "PO
more...
January 13, 2006
Found a great site a few months back and had to rehunt for it...but here it is!
more...