Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
I have searched through the forum for a method to download the html code from webpages andfound some threads easily.So far I have:[VB] Public Function GetURLSource(ByVal URL As String) As String Dim wClient = New System.Net.WebClient() Dim buffer As Byte() buffer = wClient.DownloadData(URL) GetURLSource = System.Text.Encoding.Default.GetString(buffer, 0, buffer.Length) End Function[/VB]On most webpages it works as it should, but on the webpage I want to read from it doesnt.For example http://anidb.info/perl-bin/animedb.pl?show=anime&aid=96I want to read the page so I can get the episode names from the series.But all the function returns is "
I have searched through the forum for a method to download the html code from webpages and
found some threads easily.
So far I have:
[VB] Public Function GetURLSource(ByVal URL As String) As String
Dim wClient = New System.Net.WebClient()
Dim buffer As Byte()
buffer = wClient.DownloadData(URL)
GetURLSource = System.Text.Encoding.Default.GetString(buffer, 0, buffer.Length)
End Function[/VB]
On most webpages it works as it should, but on the webpage I want to read from it doesnt.
For example http://anidb.info/perl-bin/animedb.pl?show=anime&aid=96
I want to read the page so I can get the episode names from the series.
But all the function returns is "