How I can get the content of the web page using ASP.NET? I need to write a program to get the HTML of a webpage and store it into a string variable.
Webclient client = new Webclient(); string content = client.DownloadString(url);
Pass the URL of page who you want to get. You can parse the result using htmlagilitypack.