HttpWebRequest - screen scraping

January 13, 2006 · Posted by Jeremy Thake
0 Comments· 0 Links to this post

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...
Tags:

 

System.Web.Mail helper site

January 13, 2006 · Posted by Jeremy Thake
0 Comments· 0 Links to this post

Found a great site a few months back and had to rehunt for it...but here it is! more...
Tags: