Results 1 to 3 of 3

Thread: [2008] Login Methods

  1. #1

    Thread Starter
    Fanatic Member The_Grudge's Avatar
    Join Date
    Jan 2005
    Location
    Canada
    Posts
    836

    [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?

  2. #2
    PowerPoster gep13's Avatar
    Join Date
    Nov 2004
    Location
    The Granite City
    Posts
    21,963

    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

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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
  •  



Click Here to Expand Forum to Full Width