Tutorials Navigation
[VB.NET] Log Into a Site With Your Application
Tutorial Name: [VB.NET] Log Into a Site With Your Application
Category: PC Tutorials
Submitted By: Maj
Date Added:
Comments: 0
Views: 632
Related Forum: PC Building Forum
Share:
Hello TTG,
This tutorial will teach you step by step on how to type into a websites textbox and click the submit / login button!!
Step 1. Add a button & webbrowser to your form
Step 2. Find the element ID of the textbox / textboxes & login button, to do so right click on the first textbox and click 'Inspect Element', now look for ID. Make note of this & now repeat the step for the other textbox & the button
Step 3. Double click your button now add the code:
Note: The 'submit' can vary for different sites, it may be "click" / "submit" / "post"
Step 5. Debug your application & test it out!! To debug press F5
All done!! You have successfully created an application that logs into a site through your app! Well done
This tutorial will teach you step by step on how to type into a websites textbox and click the submit / login button!!
Step 1. Add a button & webbrowser to your form
Step 2. Find the element ID of the textbox / textboxes & login button, to do so right click on the first textbox and click 'Inspect Element', now look for ID. Make note of this & now repeat the step for the other textbox & the button
Step 3. Double click your button now add the code:
Webbrowser1.document.getelementbyid("textbox1idhere").setattribute("
value", "text to write here")
Webbrowser1.document.getelementbyid("textbox2idhere").setattribute("value&
quot;, "text to write here")
Webbrowser1.document.getelementbyid("buttonidhere").invokemember("submit&q
uot;)
Note: The 'submit' can vary for different sites, it may be "click" / "submit" / "post"
Step 5. Debug your application & test it out!! To debug press F5
All done!! You have successfully created an application that logs into a site through your app! Well done
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,391)
- 02. How to: Matrix Numbers | Batch File(1,879)
- 03. How to Password Protect Files on Windows(850)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,618)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,030)
- 06. How to embed an image on TheTechGame(3,051)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(12,928)
- 08. Host bot lobbies! Full Tutorial!(10,909)
- 09. Unban yourself [Plutonium BO2](14,200)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,366)
- 11. Best Crosshair Settings for Valorant(6,506)
- 12. Othercide The Surgeon Boss Guide(2,509)
- 13. Othercide Remembrances Unlock Guide(4,431)
- 14. Othercide Beginners Tips and Tricks(2,687)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,804)
"[VB.NET] Log Into a Site With Your Application" :: Login/Create an Account :: 0 comments