用vb代码能登录这个网站吗?
网站:http://hanzhong.feixuelixm.teacher.com.cn/IndexPage/index.aspx
比如帐号为:123456
密码为: 123456
验证码: 1234
怎么把这些信息填写在相应的位置,并提交?求代码,谢谢。
[解决办法]
验证码简单的可以机器识别,复杂的不行。
自动填写表单提交可以使用WebBrowser。
[解决办法]
Web.Navigate "http://hanzhong.feixuelixm.teacher.com.cn/IndexPage/index.aspx"
Do
DoEvents
If Web.Busy = False And Web.ReadyState = 4 Then Exit Do
Loop
Web.Document.frames(0).Document.form1.txtUserName.Value = "123456"
Web.Document.frames(0).Document.form1.txtPassWord.Value = "123456"
Web.Document.frames(0).Document.form1.txtCode.Value = "1234"
Web.Document.frames(0).Document.All("ImgbtnLogin").Click