0

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?

MrProgram
  • 5,044
  • 13
  • 58
  • 98

1 Answers1

1

There are 2 parts involved here:

  1. Identifying the user and making sure it is what it tells to be (Authentication);
  2. Allowing only some of the users to access your page (Authorization).

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

Community
  • 1
  • 1
Vilmantas Baranauskas
  • 6,596
  • 3
  • 38
  • 50