WebClient

  • Thread starter Thread starter Guest
  • Start date Start date
Hi Chirambattu,

I'm afraid I don't know the answer to your question, but you might have better luck in the aspnet newsgroup

nntp://microsoft.public.dotnet.framework.aspnet

It appears to me that the web server is somehow deciding to not send any information and I don't think there is any redirection involved.

However, unrelated to not getting any information, when you use Encoding.ASCII to get the string, you might lose information as the html code on that page specifies ISO-8859-1 as its encoding. Use this line instead

Dim download as String = Encoding.GetEncoding("ISO-8859-1").GetString(myDataBuffer)
 
Back
Top