Which is best authentication method?

  • Thread starter Thread starter Ashish Kanoongo
  • Start date Start date
A

Ashish Kanoongo

Let me know the best authentication method and why ? I am asking in ASP.NET using C#.

1. Windows Builtin authentication
2. Passport base authentication
3. Form Based Authentication
4. Default (IIS) Authentication
 
hi,
actually it depends upon ur need
if u r making app for local intranet
then normally we go for windows method where w eknow users.

passport is less used as it involves u to avail the sevices from MS

i feel form method is normally used which lets us to redirect user s from secured pages
to login and back to original page,

also we can use USERS AND ROLES with it
using system.security




--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
Let me know the best authentication method and why ? I am asking in ASP.NET using C#.

1. Windows Builtin authentication
2. Passport base authentication
3. Form Based Authentication
4. Default (IIS) Authentication
 
Amit

I am creating a web based application and user authentication will occur at diferent pages within application, I think you are right incase of form base authentication. But how do we manage user and roles. Are you talking about ADS users ?

Ashish

hi,
actually it depends upon ur need
if u r making app for local intranet
then normally we go for windows method where w eknow users.

passport is less used as it involves u to avail the sevices from MS

i feel form method is normally used which lets us to redirect user s from secured pages
to login and back to original page,

also we can use USERS AND ROLES with it
using system.security




--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
Let me know the best authentication method and why ? I am asking in ASP.NET using C#.

1. Windows Builtin authentication
2. Passport base authentication
3. Form Based Authentication
4. Default (IIS) Authentication
 
hi,
i hope this site will help u

http://msdn.microsoft.com/library/en-us/dnnetsec/html/SecNetHT04.asp?frame=true

--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
Amit

I am creating a web based application and user authentication will occur at diferent pages within application, I think you are right incase of form base authentication. But how do we manage user and roles. Are you talking about ADS users ?

Ashish

hi,
actually it depends upon ur need
if u r making app for local intranet
then normally we go for windows method where w eknow users.

passport is less used as it involves u to avail the sevices from MS

i feel form method is normally used which lets us to redirect user s from secured pages
to login and back to original page,

also we can use USERS AND ROLES with it
using system.security




--
Thanks and Regards,

Amit Agarwal
Software Programmer(.NET)
Let me know the best authentication method and why ? I am asking in ASP.NET using C#.

1. Windows Builtin authentication
2. Passport base authentication
3. Form Based Authentication
4. Default (IIS) Authentication
 
Back
Top