How it could be difficult to make a web site which is integrated with domain authentication in visual studio!?
This is my web.config:
<authentication mode="Windows"/>
<identity impersonate="true"/>
<authorization>
<allow users="xxxDomains\yyyGroup"/>
<deny users="*"/>
</authorization>
This is the result:
But I think there would be a logon dialog which is for entering domain_name\username
and password
. Bu page is directed me always to the Access Denied Page without asking my username and password.
PS: I'm not belong to any domain. I want to use visual studio's web server(cassini). I will deploy the site after finishing project, I don't want to deploy project to web server in every F5 ...
Any help would be appreciated...