Authorization & Theme

  • Thread starter Thread starter Anthony Small
  • Start date Start date
A

Anthony Small

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.
<authentication mode="Forms">
<forms loginUrl="~/Pages/Login.aspx" protection="All" timeout="40"
/>
</authentication>
<authorization>
<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.
<authorization>
<deny users="?"/>
</authorization>
Thanks in advance

Tony S.
 
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.

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.
<authentication mode="Forms">
<forms loginUrl="~/Pages/Login.aspx" protection="All" timeout="40"
/>
</authentication>
<authorization>
<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.
<authorization>
<deny users="?"/>
</authorization>
Thanks in advance

Tony S.
 
Back
Top