+ 2
Hello World, please help me on how to development a web based application of a login screen
I need to create a login asp.net app that l will link of my database for future use //It's School Work
2 Answers
0
Just create a form containing user and password. Use action=POST and be careful about input types.
At server side validate inputs and if was correct create a session cookie. Every endpoint should verify the cookie existence.
Server side is technology aware.
Google express session authentication
0
thanks