×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

C# (C Sharp) example - How to read the HTML content of a web page and store it in a string?


C# (C Sharp) - How to read the HTML content of a web page and store it in a string?

using System;
using System.IO;
using System.Net;
using System.Text;

...

public  string ReadPage
			(
			string strURL
			)
		{

			WebRequest myWebRequest = WebRequest.Create(strURL); 

			WebResponse myWebResponse = myWebRequest.GetResponse(); 

			Stream ReceiveStream = myWebResponse.GetResponseStream();
               
			Encoding encode = System.Text.Encoding.GetEncoding("utf-8");

			StreamReader readStream = new StreamReader( ReceiveStream, encode );

			string strResponse=readStream.ReadToEnd();
		

			readStream.Close();
		
			myWebResponse.Close();

			return strResponse;

		}

Category: C# (C Sharp)

 
<< Go back