Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.71K
~2K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for sivamoni

in C# WebResponse return a StreamReader and we can get the content from StreamReader .. WebResponse webresponse ; webRequest = WebRequest.Create(textBox1.Text); webresponse = webRequest.GetResponse(); inStream = new StreamReader(webresponse.GetResponseStream()); textBox2.Text = inStream.ReadToEnd(); full source code...[Get URL Content](http://csharp.net-informations.com/communications/csharp-url-content.htm) Nathan

Member Avatar for nathanmannar
0
2K

The End.