Question:Given the following Web.config file, what permissions do users have to the Marketing
folder?
<configuration>
<system.web>
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
</system.web>
<location path="Marketing">
<system.web>
<authorization>
<allow roles="FABRIKAM\Marketing" />
<deny users="*" />
</authorization>
</system.web>
</location>
</configuration>
A Authenticated users and members of the FABRIKAM\Marketing group have access.
All other users are denied access.
B Members of the FABRIKAM\Marketing group have access. All other users are
denied access.
C All users, authenticated and unauthenticated, have access.
D All users are denied access.