Question: Which of the following controls provides a link for unauthenticated users to log on?
A
B
C
D
Login
B
LoginView
C
LoginStatus
D
LoginName
Note: Not available
<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><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>
For the Marketing folder, you remove all file permissions, and then grant read access to the FABRIKAM\John and FABRIKAM\Sam user accounts. John is a member of the FABRIKAM\Domain Users and FABRIKAM\Marketing groups. Sam is only a member of the FABRIKAM\Domain Users group. Which of the following users can access web forms located in the Marketing folder?