中央論壇 - CENTER BBS

標題: 利用WebClient取得其網頁html [打印本頁]

作者: f66666602    時間: 2007-8-14 05:03
標題: 利用WebClient取得其網頁html
using System.Net;
using System.Text;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        WebClient wc = new WebClient();
        byte[] b = wc.DownloadData("http://tw.yahoo.com");

        string html = Encoding.Default.GetString(b);
        Response.Write(html);
    }
}




歡迎光臨 中央論壇 - CENTER BBS (https://www.centerbbs.com/) Powered by Discuz! X3