WebClient

M

Morten Wennevik

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top