hello,
I have folder name "Secure" which has followign page
1. default.aspx
2. default2.aspx
3. default3.aspx
i have added web.config in folder so non login user can not access the pages
<system.web>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
</system.web>
now i want to add one more tag in same web.config that non login and login both can access default.aspx but other 2 pages can only be access by logn in user
kindly advice