up vote 0 down vote favorite
share [g+] share [fb]

I don't have any idea how to use this class in .net. Anyone wants to share his knowledge how to implement and use this class?

Have you got any simple procedure that calls a page and process it?

link|improve this question

72% accept rate
What programming language are you using? – Guffa May 25 '09 at 12:39
feedback

2 Answers

up vote 3 down vote accepted
Dim request = HttpWebRequest.Create("http://www.google.com")
Dim response = request.GetResponse()
Using reader = New StreamReader(response.GetResponseStream())
    Console.WriteLine(reader.ReadToEnd())
End Using
link|improve this answer
feedback

The easiest way is to use the WebClient class that simplifies most common uses of HttpWebRequest.

Example in C#:

string page;
using (WebClient client = new WebClient()) {
   page = client.DownloadString("http://www.guffa.com");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.