Authorization & Theme

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

Anthony Small

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top