Deal All i have a query how to write the web.config file to perform my that operation mentioned below :
i have directory in my asp.net website namely BOSS inside BOSS directory i have IMAGE directory...
i have allow only admins to access BOSS directy but I want the Directory IMAGE inside BOSS will be accessed by all users of my site including Anonymous users.
Howto do that ...i have created a admin role for BOSS directory as :
<location path="boss">
<system.web>
<authorization>
<allow roles="admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>