how to make website login system
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
4 posts
Page 1 of 1
how to make website login system?
please help me.
Thanks!
Best Regards,
DGZone Team
please help me.
Thanks!
Best Regards,
DGZone Team
On what WebSite u wonna LogIn ?!
Code: Select all
textbox1 = username
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
textbox2 = password
Tell me if it doesn't work,just tried something that worked for me like that:)
4 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023