如何登录第三个系统 [英] How to login the third system

查看:99
本文介绍了如何登录第三个系统的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想登录第三个系统,就像一些电子邮件系统一样。

我有我的用户ID和密码。

我可以将它们存储在我的网站上。

我想自动登录第三个系统。

现在,我可以自动登录抛出VBS,但是如何将VBS更改为Html?

VBscript





I want to login the third system,like some email system.
I have my userID and password.
I can store them in my website.
I want to automatic login the third system.
now,I can auto login throw VBS ,but how can I change the VBS to Html?
VBscript


Set ie = CreateObject("internetexplorer.application")
ie.navigate "http://host/jsp/login/register.jsp" 
ie.Visible = True
While ie.busy Or ie.readystate <> 4 
wscript.sleep 200
Wend
ie.document.form1.username.Focus 
ie.document.form1.username.value="***" 
ie.document.form1.password.Focus 
ie.document.form1.password.value="****" 
ie.document.form1.Submit

推荐答案

如何在Web浏览器中获得与VBS代码相同的性能?
how can I get the same performance in web browser like the VBS code?


这篇关于如何登录第三个系统的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆