Click here to Skip to main content
15,867,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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


VB
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
Posted
Updated 27-Apr-13 0:10am
v2
Comments
[no name] 27-Apr-13 6:10am    
"how can I change the VBS to Html?", you can't.

1 solution

how can I get the same performance in web browser like the VBS code?
 
Share this answer
 
Comments
Manfred Rudolf Bihy 2-May-13 4:50am    
This is not a solution!
Change or edit your question instead.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900