| Snippet | C# | Visual Studio | .NET | ASP.NET |
SummaryHere I intend to show you how you can use C# and System.Net.HttpWebRequest to scrape or download a webpage.
Similar code can also be used to post forms which utilize both the get and post form methods by adding a few extra lines of code. |
Example: Using HttpWebRequest Objectstring url = "http://google.com"
string strResult = "";
WebResponse objResponse;
WebRequest objRequest = System.Net.HttpWebRequest.Create(url);
objResponse = objRequest.GetResponse();
using (StreamReader sr = new StreamReader(objResponse.GetResponseStream()))
{
strResult = sr.ReadToEnd();
sr.Close();
}
Response.Write(strResult); |
|