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
1 Posted Topic
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
The End.
nathanmannar