Form Authentication question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ckkwan@my-deja.com

    Form Authentication question

    Dear All,

    ASPNET 1.1 web page using Form authentication.

    I have a need to display more than one aspx pages before the user
    login (not *.html but *.aspx pages).

    Is it possible?
  • Alexey Smirnov

    #2
    Re: Form Authentication question

    On Mar 5, 1:45 pm, ckk...@my-deja.com wrote:
    Dear All,
    >
    ASPNET 1.1 web page using Form authentication.
    >
    I have a need to display more than one aspx pages before the user
    login (not *.html but *.aspx pages).
    >
    Is it possible?
    You can use <locationconfig uration in the web.config file to skip
    authentication for the specific file

    <location path="default.a spx">
    <system.web>
    <authorizatio n>
    <allow users="*" />
    </authorization>
    </system.web>
    </location>

    where * is used to denote "all users". Or use ? to allow an anonymous
    user to access the page.

    Comment

    Working...