I have an authorization error in my asp.net mvc4 application. My account admin of my machine is this one
my session properties:
in my web.config file i put this snippet:
<authentication mode="Windows" />
<authorization>
<allow users = "Lamloumi" />
<deny users="?"/>
</authorization>
when i launch the application, i can't access to it.
What is the reason of this error? how can i fix my code?