程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 使用net classes訪問其他網站內容

使用net classes訪問其他網站內容

編輯:.NET實例教程
="VB" runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
    Try
        Dim objResponse As System.Net.WebResponse
        Dim objRequest As System.Net.WebRequest
        DIM theurlresult as string
        DIM theurl as string = "http://www.funinspace.com"
        objRequest = System.Net.HttpWebRequest.Create(theurl)
        objResponse = objRequest.GetResponse()
        Dim sr As new system.io.StreamReader(objResponse.GetResponseStream())
        theURLresult=server.Htmlencode(sr.ReadToEnd())
        Page.Controls.Add(new LiteralControl(theURLresult))
    Catch ex As Exception
        Page.Controls.Add(new LiteralControl(ex.Message))
    End Try
End Sub
</script>
<Html><head>
<title>Scraping A Website</title>
</head>
<body bgcolor="#FFFFFF">
<h3><font face="Verdana">Scraped Data</font></h3>

</body></Html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved