London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
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?