Hi,
I get some web page in this way:

VB Code:
  1. Dim txt as string
  2. Dim startD As Date, endD As Date
  3. Dim rS As Stream
  4.     rS = HttpWebResponse.GetResponseStream()
  5.     startD = DateTime.Now
  6.     Dim sR As New StreamReader(rS)
  7.     txt = strReader.ReadToEnd()
  8.     endD = Now

This web page has about 350kb and difference from startD and endD is 8sec. I think that is to much time for loading 350kb file. Can I do it faster?

thanks j