Hi, I am fixing an ASP.NET Intranet and trying to authenticate users without using a password dialogue.
I have Windows authentication and impersonate on.
In the web.config file if I have something like
<system.web>
<authorization>
<allow users="myDomain\allowedgroup" />
</authorization>
</system.web>
then users can access the area fine
However as soon as I change it to
<system.web>
<authorization>
<allow users="myDomain\allowedgroup" />
<deny users ="*"/>
</authorization>
</system.web>
then users are asked for their username / password.
After they have supplied it they are fine but I would really like to remove this requirement.
We are on an Intranet so there must be a way of Windows passing IIS the required details.
In Directory Security tab of IIS I only have "Windows Integrated Authentication" enabled.
What change would be required for Windows / IE to pass the user/pass to IIS ?
Thanks in advance,
Dels
I have Windows authentication and impersonate on.
In the web.config file if I have something like
<system.web>
<authorization>
<allow users="myDomain\allowedgroup" />
</authorization>
</system.web>
then users can access the area fine
However as soon as I change it to
<system.web>
<authorization>
<allow users="myDomain\allowedgroup" />
<deny users ="*"/>
</authorization>
</system.web>
then users are asked for their username / password.
After they have supplied it they are fine but I would really like to remove this requirement.
We are on an Intranet so there must be a way of Windows passing IIS the required details.
In Directory Security tab of IIS I only have "Windows Integrated Authentication" enabled.
What change would be required for Windows / IE to pass the user/pass to IIS ?
Thanks in advance,
Dels