使用net classes访问其他网站内容
<script language="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>
相关新闻>>
- 发表评论
-
- 最新评论 更多>>
今日头条
更多>>您可能感兴趣的文章
- .net第三方插件Infragistics中的UltraWebTab控件,切换tab页的on
- 如何在ASP.NET MVC中使用图表控件
- the sourcesafe database has been locked by the administrator
- 微软.NET 常见问题解答(1)
- .net 网站开发维护基础知识
- asp.net 中将表单提交到另一页 Code-Behind的代码实现
- asp.net 枚举文件里面的数字绑定到DropDownList里面去
- ASP.NET Web Page应用深入探讨第1/2页
- .NET中的DRY和SHY原则
- wcf系列5天速成——第二天 binding的使用(2)