If you are using .NET, simply use the following function to get HTML string from an URL.
public static string getHTML(string url)
{
return new System.Net.WebClient().DownloadString(url);
}
Tips, tricks and techniques for geeks of PHP, ASP, JSP, VB, .NET, JavaScript, Dreamweaver, MySQL, Oracle, SQL Server, etc.
public static string getHTML(string url)
{
return new System.Net.WebClient().DownloadString(url);
}