10-31-2011، 02:41 PM
شما با استفاده از اين كد مي توانيد سورس يك صفحه اينترنتي را دانلود و به صورت رشته برگردانيد
کد:
string getPageSource(string URL)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string strSource = webClient.DownloadString(URL);
webClient.Dispose();
return strSource;
}