2009年4月21日 星期二

抓取 HTTP 內容在網頁程式中顯示

之前有使用過System.Net的WebClient來做FTP檔案下載功能,

其實我們也可以利用他來瀏覽其他網站的資料,方式是使用DownloadData()Methed並搭配使用Server.HtmlDecode()來顯示遠端網頁資料在我們所開發的頁面上。

Dim clientIE As New System.Net.WebClient
Dim buffer1 As Byte() = clientIE.DownloadData("http://tw.yahoo.com/")
Dim HttpContentText As String = System.Text.Encoding.UTF8.GetString(buffer1)
Me.Response.Write(Me.Server.HtmlDecode(HttpContentText))

沒有留言:

張貼留言