» 网友学堂 » NET教程 » ASP.NET实现HTTP方式获取功能
ASP.NET实现HTTP方式获取功能
作者:问天 发表时间:2007-2-20 11:27 阅读:359次 在百度搜索相关内容

<%@ Assembly Name="System.Net" %>
<%@ Import Namespace="System.Net" %>
<%@ Import Namespace="System.IO" %>
<script language="VB" runat="server">
dim STRtemp as string
Sub Page_Load(Src As Object, E As EventArgs)
Dim HttpWResp as HTTPWebresponse
Dim sr As StreamReader
'dim STRtemp as string
dim build as new stringbuilder

HttpWReq = WebRequestFactory.Create("http://www.funinspace.com")
HttpWReq.KeepAlive = false
HttpWResp = HttpWReq.GetResponse()
sr = new StreamReader(HttpWResp.GetResponseStream(), Encoding.ASCII)

Try
line=sr.ReadLine()
lineENC = server.HTMLencode(line) &;amp; vbcrlf &;amp; "<br>"
build.append (lineENC)
[color=#FFFFFF'][/color]


do while not IsNothing(line)
line = sr.ReadLine()
lineENC = server.HTMLencode(line) &;amp; vbcrlf &;amp; "<br>"
build.append (lineENC)
loop
Catch ex As Exception
problem.text =ex.Message
End Try

labelscrape.text=build.ToString()
End Sub
</script>
<html><head>
<title>Scraping A Website</title>
</head>
<body bgcolor="#FFFFFF">
<h3><font face="Verdana">Scraped Data</font></h3>
<asp:label id=problem runat="server"/>

<font face="courier new" size="2">
[color=#FFFFFF'][/color]

<asp:label id=labelscrape runat="server"/>
</font>
</body><