|
-
Sep 19th, 2008, 10:16 AM
#1
Thread Starter
Fanatic Member
[2008] Login Methods
I'm fairly new to ASP.NET so I'm working on a relatively small web application to get my feet wet.
One thing my project will definitely require is a secure login of some sort. Only certain users should have access to the site, which is going to be on my companies Intranet.
Should I make the user enter a password each and everytime they enter the site, or should I run some sort of authentication that checks their NT account and provides access based on that?
Is one of those methods better than the other? Does the "login control" in Visual Web developer work okay for this?
-
Sep 19th, 2008, 05:01 PM
#2
Re: [2008] Login Methods
Hey there,
If you are using Windows Authentication, then maybe you should use the information in the following article.
Hope this helps!!
Gary
-
Sep 22nd, 2008, 08:20 AM
#3
Re: [2008] Login Methods
Enabling Windows Authentication allows you to delegate the responsibility of authentication to your primary domain controller, so you can go with the assumption on your pages that the user is always authenticated.
This way, if the user is disabled or destroyed, then it will reflect what's happening in the Active Directory and all you need to do is keep reading the User.Identity.Name.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|