Auto-login passing username and password via URL |
7/25/2019 6:12:04 PM |
ASPRunner.NET Tips and tricks | |
![]() Please note that passing username and password via URL is very insecure. Use it for internal applications only. if (MVCFunctions.postvalue("username") && MVCFunctions.postvalue("password"))
https://yourwebsite.com/login?username=...&password=... |
|