AI OnAI Off
Hi Peter.
Maybe you could try to use authorization in <location path=""> in Web.Config?
<location path="yourPath">
<system.web>
<authorization>
<allow roles="Editor, Administrators" />
<deny users="*" />
</authorization>
</system.web>
</location>
Br, Tore
I've got a set of pages in my current project that are not EPiServer-pages but they are included in the project. I'd like these not to be reachable by someone who's not logged in as an administrator/editor to be able to reach these pages. Is there any way to do this?