Form authentication, what about normal login?

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

  1. #1

    Default Form authentication, what about normal login?

    Hello,
    Let's assume we have setup from-based authentication in a website.
    And the front page of this website is a login page with some welcome
    message.
    A user types in URL and request this front page.
    But the IIS cannot find AUTH cookie for this user, so it redirect the
    user to the login page, which we setup as the same login page as we
    mentioned earlier.
    Then after user login, and then he will be redirect back to the
    original page he requested, which is the same login page again.
    Isn't that funny?

    OK, you might say we can somehow (how?) config the IIS so that this
    front page doesn't require authentication.
    But the problem remains.
    If a user types in URL and succefully get this front page, he typed in
    his user name and password and click on submit button.
    Then the login page will check the credential and then redirect user
    to other pages, e.g. his inbox.
    But during this process, no AUTH coockie is created.
    The login page doesn't create AUTH cookie.
    So the user will be redirect to login page later when he visit other
    page.
    Please tell me what's wrong with my logic.

    Thank you very much.
    Henry Guest

  2. Similar Questions and Discussions

    1. Strange problem with Forms authentication: After successfull login, login page is still displayed
      Hi there I have a quite strange problem with my ASP.NET-Application. The application has being deployed one year ago and worked fine till last...
    2. Form Authentication - Roles - Always returns to login screen
      I'm using forms authentication and I want to limit access to certain directories only to users with certain roles. I have the following code...
    3. Custom Login Form for Windows Authentication?
      Hello: I need to have a custom login form page for a site with Windows Authentication and internally i make the 'authentication windows process'....
    4. Is there a way to determe reason for authentication in login form?
      I can't find a way to tell if the login form has been run as a result of accessing a directory the user is not authorized for. I am using forms...
    5. Form Authentication with Remote Login.aspx
      I know this is an old question, but searching all over the internet plus several MS security conferences, still haven't got a straight anwser. ...
  3. #2

    Default Form authentication, what about normal login?

    Good question, in fact one I had to deal with a while
    back.

    [url]http://www.devx.com/vb2themax/Tip/18800[/url]

    Basically, you can setup different settings for different
    files/folders of your apps. Focus on the location
    section of the web.config for your answer.

    >-----Original Message-----
    >Hello,
    >Let's assume we have setup from-based authentication in
    a website.
    >And the front page of this website is a login page with
    some welcome
    >message.
    >A user types in URL and request this front page.
    >But the IIS cannot find AUTH cookie for this user, so it
    redirect the
    >user to the login page, which we setup as the same login
    page as we
    >mentioned earlier.
    >Then after user login, and then he will be redirect back
    to the
    >original page he requested, which is the same login
    page again.
    >Isn't that funny?
    >
    >OK, you might say we can somehow (how?) config the IIS
    so that this
    >front page doesn't require authentication.
    >But the problem remains.
    >If a user types in URL and succefully get this front
    page, he typed in
    >his user name and password and click on submit button.
    >Then the login page will check the credential and then
    redirect user
    >to other pages, e.g. his inbox.
    >But during this process, no AUTH coockie is created.
    >The login page doesn't create AUTH cookie.
    >So the user will be redirect to login page later when he
    visit other
    >page.
    >Please tell me what's wrong with my logic.
    >
    >Thank you very much.
    >.
    >
    Keith 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