Jump to content

IIS - Restricting specific roles access to folders


Recommended Posts

i am sure this is very common thing to do. how do i do it. currently i used the ASP.NET Configuration tool but even when not logged in i can access the folders. this is what my Admin/web.config looks like after editing it after searching for info on this, but its not working.

<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<location path="~/Admin">
<system.web>
<authorization>
<allow roles="admin" />
<deny users="*" />
</authorization>
<authentication mode="Forms">
<forms loginUrl="~/Home/Login.aspx"
defaultUrl="~/Default.aspx" />
</authentication>
</system.web>
</location>
</configuration>

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...