IIS Authentication and application login

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

I need to control access to my web site via login
information in a database on the server.

The only way I see to do this is to use an authenication
scheme that doesn't require a user login (either
anonymous or certificates mapped to a user) to establish
the IIS login. Then, I would have to handle the
application's login though my own web page and server
code. Is there another way that I should consider?

Also, can you point me to scripts I could use to
automatically map those certificates in an install?
 
Hi,

If you are working on an intranet then you could use windows auth.

otherwise you will have to use forms auth.

if you want that the client "remember" the credentials you will have to use
a cookie in the client. in this way the user will login once and after that
wile the cookie exist will not have to login again.

Cheers,
 
Back
Top