Tuesday, June 18, 2013

download HTML Source in C#

using System.Net;

private string DownloadPagesource(string Url)

        WebClient wc = new WebClient();
        return wc.DownloadString(Url); 
}


//This Method Return You To Website Page Source Code

No comments:

Post a Comment