Reputation: 5242
I'm having a webpage on which I will try to make a nice authentication..
At the best I would like that only the users allowed should be able to visit it, without any password or stuff. Is that possible and how can I do that?
If it matters the application is written in c#
Otherwise anyone has any smooth tip?
Upvotes: 0
Views: 96
Reputation: 6726
There are 2 parts involved here:
For your case, the second one should be easy, once you have done the first one. A good starting point would be The definitive guide to form-based website authentication
Upvotes: 1