Basic Forms Authentication question

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

  1. #1

    Default Basic Forms Authentication question

    I can't get this damn thing to work at all.

    I have a virtual directory set up with anonymous access only, web.config
    contains the following but when I go to the site it ignores the security and
    never redirects to login.aspx. I know this will be a stupid problem but
    please help!

    <configuration>

    <system.web>

    <authentication mode="Forms">

    <forms name="ASPXAUTH"

    loginUrl="login.aspx"

    protection="All"

    path="/"/>

    </authentication>

    </system.web>

    </configuration>


    R-D-C Guest

  2. Similar Questions and Discussions

    1. Basic Forms Authentication Expiration ?
      Yes. When the user is authenticated with FormsAuthentcation.RedirectFromLoginPage or with FormsAuthentication.SetAuthCookie, pass false to the...
    2. Forms Authentication via SSL question
      I have an ASP.NET application using forms authentication. I works without any problems. I have been trying to enable the login process to work...
    3. Problems when authenticating against the Active Directory using Forms Authentication and Visual Basic .NET
      I have recently followed the document to allow authentication against Active Directory using Forms authentication as described in the the Microsoft...
    4. Can I pass ASP Basic Auth Credentials to an APS.NET Forms Authentication site?
      I am converting an ASP Website running Windows NT 4.0 to ASP.NET running Windows 2000 on a different computer across the Internet. During this...
    5. ASP.Net Forms authentication with basic authentication popup
      Relatively new to ASP.Net but have a strange problem. My site uses forms authentication for a large administration section however after the user...
  3. #2

    Default Re: Basic Forms Authentication question

    | I have a virtual directory set up with anonymous access only, web.config
    | contains the following but when I go to the site it ignores the security
    and
    | never redirects to login.aspx. I know this will be a stupid problem but
    | please help!

    you must specify not only authentication, but also the authorization
    conditions. The following web.config example should help:

    <configuration>
    <system.web>
    <!-- here you would setup authentication method -->
    <authentication mode="Forms">
    <forms loginUrl="/Default.aspx" timeout="30" path="/" protection="All"
    />
    </authentication>
    <!--
    now specify authorization for root folder
    '*' means all users, '?' means anonymous users
    the following setting will allow access to all users except anonymous
    -->
    <authorization>
    <deny users="?" />
    <allow users="*" />
    </authorization>
    </system.web>
    <!--
    here we specify different rights for the 'noauth' folder, where
    everyone
    (even anonymous users) has access
    -->
    <location path="noauth">
    <system.web>
    <authorization>
    <allow users="*" />
    </authorization>
    </system.web>
    </location>
    <!--
    here we specify different rights for the 'admin' folder, where only
    members of 'Admins' role can go
    -->
    <location path="admin">
    <system.web>
    <authorization>
    <allow roles="Admins" />
    <deny users="*" />
    </authorization>
    </system.web>
    </location>
    </configuration>

    --
    Michal A. Valasek, Altair Communications, [url]http://www.altaircom.net[/url]
    Please do not reply to this e-mail, for contact see [url]http://www.rider.cz[/url]


    Michal A. Valasek 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