You want to configure the application to use the following authorization rules in web.config file:
-Anonymous users must not be allowed to access the application.
-All employees except ABC must be allowed to access the application.

Options
- < authorization> < deny users=”ABC”> < allow users=”*”> < deny users=”?”> < /authorization>
- < authorization> < allow users=”*”> < deny users=”ABC”> < deny users=”?”> < /authorization>
- < authorization> < allow users=”ABC”> < allow users=”*”> < /authorization>
- < authorization> < deny users=”ABC”> < deny users=”?”> < allow users=”*”> < /authorization>


CORRECT ANSWER : < authorization> < deny users=”ABC”> < deny users=”?”> < allow users=”*”> < /authorization>

Discussion Board
dsa

good questions

sanket 01-6-2016 03:30 PM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement