也就是比如我ASP页面是www.abc.com/1.asp里的代码是 <html> <head> </head> <body> <% if request("LogName") <>"abcdef" or request("Passwd") <>"123456" then %> </body> </html> 也就是用户是abcdef 密码是123456 vb6里面是 Private Sub Command1_Click() if text1.text=LogName and text1.text=Passwd then "这里是条件达到了要执行的代码 endif End Sub Private Sub WebBrowser1_StatusTextChange(ByVal Text As String) WebBrowser1.Navigate "http://www.abc.com/1.asp" End Sub 我要怎么样可以获取出页面里的用户abcdef 和密码123456出来