Posted on: 11/23/2013 1:24:16 PM | Views : 631

I am using following entries in web.config
 
<authorization>
       <allow roles="admin" />
       <deny users="*" />
</authorization>
 
 <location path="Folder1">
        <system.web>
            <authorization>
                <allow users="*" />
             </authorization>
        </system.web>
    </location>
 
My default page default.aspx i ...

Go to the complete details ...