Page 1 of 1

how to make website login system

Posted: Wed May 04, 2011 3:25 pm
by JustFashion
how to make website login system?
please help me.

Thanks!

Best Regards,
DGZone Team

Re: how to make website login system

Posted: Wed May 04, 2011 3:47 pm
by Napster1488
On what WebSite u wonna LogIn ?!

Re: how to make website login system

Posted: Wed May 04, 2011 5:16 pm
by JustFashion
Sorry not website.

www.dgzone.webuda.com/forum

Re: how to make website login system

Posted: Wed May 04, 2011 5:49 pm
by Axel
Code: Select all

Webbrowser1.Document.GetElementById("quick_login_username").SetAttribute("value",textbox1.text)
Webbrowser1.Document.GetElementById("quick_login_password").SetAttribute("value",textbox2.text)
For eachHTMLElement elem in Webbrowser1.Document.GetElementsByTagName("input")
If elem.GetAttribute("name") = "submit" Then
elem.Invokemember("click")
End If
Next
textbox1 = username
textbox2 = password
Tell me if it doesn't work,just tried something that worked for me like that:)