普通的webbrowser应该不行,请问应该怎样写?谢谢

解决方案 »

  1.   

    用xmlHttp模拟登录。然后再用它取值。
     dim objXmlhttp   As New XMLHTTP
     objXmlhttp.Open "POST", url, False
     objXmlhttp.setRequestHeader "content-type", "application/x-www-form-urlencoded"
     objXmlhttp.setRequestHeader "Cache-Control", "no-cache" objXmlhttp.send "username=aa&password=111' 
     Dim res As String '返回值
     res = objXmlhttp.responseText
      
    根据res判断是否登陆成功。然后用Get方法取值。
      

  2.   

    查找一下 CSDNReader 2005,是 C# 的范例。
      

  3.   

    自己解决了,看这帖http://community.csdn.net/Expert/topic/5178/5178895.xml?temp=.304867