I have created a page type from EPIServer admin and based on that created a page in EPIServer. Now I want to put authentication on that page so that only login user and user with a certain user id can access that page from front end.No guest user will be able to access that page.How to implement that in EPIServer,In setting section of a page type there is a option access role but it is not working. Still anonymous user are able to access that page. What is the option to put restriction on that page .Please share link of tutorial.
My navigating url is
http://wwww.xyz.com/en/Documents/
and in web.config I have written like this
<location path="Documents">
<system.web>
<authorization>
<deny users="*"></deny>
</authorization>
</system.web>
</location>