SORU
1 Mart 2009, Pazar


Nasıl C HTML kaynak İndirebilirim#

Nasıl HTML kaynağını c web adresi alabilir miyim#?

CEVAP
1 Mart 2009, Pazar


WebClient class ile dosyaları indirebilirsiniz:

using System.Net;
//...
using (WebClient client = new WebClient ()) // WebClient class inherits IDisposable
{
    client.DownloadFile("http://yoursite.com/page.html", @"C:\localfile.html");

    // Or you can get the file content without saving it:
    string htmlCode = client.DownloadString("http://yoursite.com/page.html");
    //...
}

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:
C#

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • erikbjgn's channel

    erikbjgn's c

    12 Mayıs 2008
  • TheOtherMau5

    TheOtherMau5

    6 Mart 2012
  • wowchick16

    wowchick16

    17 Mart 2007