Question:Which of the following Web.config segments correctly requires that all users be authenticated by using a Windows user account?
A <authentication mode="Windows" /> <authorization> <deny users="*" /> </authorization>
B <authentication mode="Windows" /> <authorization> <allow users="*" /> </authorization>
C <authentication mode="Windows" /> <authorization> <deny users="?" /> </authorization>
D <authentication mode="Windows" /> <authorization> <allow users="?" /> </authorization>
+ AnswerC
+ Report