|
|
|
code snippet from aspngbeta list on how to read another webpage on another server. |
Click here to copy the following block | <%@ Assembly Name="System.Net" %> <%@ Import Namespace="System.Net" %> <%@ Import Namespace="System.IO" %> <... language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Dim HttpWResp as HTTPWebresponse Dim sr As StreamReader dim STRtemp as string
text1.text = "" HttpWReq = WebRequestFactory.Create("http://www.funinspace.com") HttpWReq.KeepAlive = false HttpWResp = HttpWReq.GetResponse() sr = new StreamReader(HttpWResp.GetResponseStream(), Encoding.ASCII) Try line=sr.ReadLine() '-- comment: lost the first line. lineENC = server.HTMLencode(line) & vbcrlf & "<br>" '-- don't need STRtemp=lineENC do while line <> null 'response.write (lineENC) line = sr.ReadLine() lineENC = server.HTMLencode(line) & vbcrlf & "<br>" text1.text = text1.text & lineENC loop Catch ex As Exception text1.text = "Error occurred: " & 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> <asp:TextBox id="text1" Width="600px" Textmode="multiline" rows="40" runat="server"/> </body></html> |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|