Authorization & Theme

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Anthony Small

    Authorization & Theme

    Hello,
    I have a login.aspx page that is associated with a theme. When I view the
    page login.aspx with forms authentication/authorization set as below in the
    web.config file the theme displays on the page as expected.
    <authenticati on mode="Forms">
    <forms loginUrl="~/Pages/Login.aspx" protection="All " timeout="40"
    />
    </authentication>
    <authorizatio n>
    <allow users="*"/>
    </authorization>
    Can anyone comment on why the page theme does not display when using the
    deny settings? The oage is displayed but not with the theme.
    <authorizatio n>
    <deny users="?"/>
    </authorization>
    Thanks in advance

    Tony S.


  • Anthony Small

    #2
    Re: Authorization &amp; Theme

    FWIW I solved this problem by running the site administration tool and
    seting up an access rule that allowed everyone to the root of the site (and
    denying anonymous to other parts of the site).

    Tony S.

    "Anthony Small" <anthony-small@btclickdo tcom> wrote in message
    news:e7roRQOiGH A.2188@TK2MSFTN GP04.phx.gbl...
    Hello,
    I have a login.aspx page that is associated with a theme. When I view the
    page login.aspx with forms authentication/authorization set as below in the
    web.config file the theme displays on the page as expected.
    <authenticati on mode="Forms">
    <forms loginUrl="~/Pages/Login.aspx" protection="All " timeout="40"
    />
    </authentication>
    <authorizatio n>
    <allow users="*"/>
    </authorization>
    Can anyone comment on why the page theme does not display when using the
    deny settings? The oage is displayed but not with the theme.
    <authorizatio n>
    <deny users="?"/>
    </authorization>
    Thanks in advance

    Tony S.


    Comment

    Working...