Form Authentication in ASP.NET for multiple users

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Form Authentication in ASP.NET for multiple users

    Hi
    Can I implement Form Authentication in ASP.NET for
    different users(Number of different users is not fixed).

    Regards
    Vinayak
    Vinayak Guest

  2. Similar Questions and Discussions

    1. Multiple users on multiple sites
      If several users edit their own sites using one pc with one version of Contribute, for example in a community venue, is it possible to issue...
    2. CFLDAP users authentication
      Hi all, I'm trying to authenticate a user with Active Directory. I want to use the CFLDAP tag. I got this example from the Macromedia website...
    3. Authentication for anonymous users?
      What should I do for realising the following task: Anonymous users can browse my ASP.net site( limited number of pages), but when the try to access...
    4. session authentication for users
      Hi, I need to know the best way to program a login page that will only authenticate users when they click the login button at the top of our...
    5. Authentication with NT Users
      Hi, Can someone tell me how I create a login page which authenticates users against the servers user manager. I want the login to be a form in...
  3. #2

    Default Re: Form Authentication in ASP.NET for multiple users

    Vinayak,

    Start here:

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsent7/html/vxconaspnetauthentication.asp[/url]

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetauthentication.asp[/url]

    These two articles are the best for getting up to speed.
    --
    Ralph Page MBA, CMBA, MCDBA, MCSE, CCNA
    -------------------------------------------------------------------------
    "However beautiful the strategy, you should occasionally look at the
    results."
    -- Winston Churchill
    -------------------------------------------------------------------------
    "Vinayak" <vinayak.narvekar@lntinfotech.com> wrote in message
    news:171af01c38667$bc75b510$a601280a@phx.gbl...
    > Hi
    > Can I implement Form Authentication in ASP.NET for
    > different users(Number of different users is not fixed).
    >
    > Regards
    > Vinayak

    Me2 Guest

  4. #3

    Default Re: Form Authentication in ASP.NET for multiple users

    Yes.

    You can either put the users in the WEBCONFIG file, or validate them by
    putting Accounts/Passwords in a back-end database. If you do so, it is, of
    course, best practice to encryp the passwords before you store them and
    before you query using them.

    Record not found --> don't set authentication context.

    Below is a nice write-up.

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetHT03.asp[/url]

    tc

    "Vinayak" <vinayak.narvekar@lntinfotech.com> wrote in message
    news:171af01c38667$bc75b510$a601280a@phx.gbl...
    > Hi
    > Can I implement Form Authentication in ASP.NET for
    > different users(Number of different users is not fixed).
    >
    > Regards
    > Vinayak

    Toby Considine Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139