Multiple choice

Which of the following is a valid pair of wild card characters in web.config?

    • and /
  1. / and ?

    • and ?
  2. ? and _ (underscore)

    • and _(underscore)
Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The users attribute in web.config allows two wild card characters: * and ?. Anonymous users are identified using a question mark (?). We can specify all authenticated users using an asterisk (*).