我的VB程序里是这样写的: 
   Inet1.URL = "http://www.sina.com"
    Dim b() As Byte
    b() = Inet1.OpenURL(Inet1.URL, icByteArray)
    Open App.Path & "\xml\sina.htm" For Binary Access Write As #1
    Put #1, , b()
    Close #1
上面的程序返回没问题,sina.htm有180多K
换成:
    Inet1.URL = "http://server:8080/jiangdu/scms.jsp?id=aaa&serviceType=priceAllQuery&argslen=0"
    Dim b() As Byte
    b() = Inet1.OpenURL(Inet1.URL, icByteArray)
    Open App.Path & "\xml\sina.htm" For Binary Access Write As #1
    Put #1, , b()
    Close #1程序返回的sina.htm只有1K,请问为什么,应该是5K多一点但我在IE地址栏里写:
http://server:8080/jiangdu/scms.jsp?id=aaa&serviceType=priceAllQuery&argslen=0
返回的是正确的,请问高手,问题出在哪?