i have applied windows authentication for asp.net project and it is working. when i try to access any secure page then first time login dialog comes....but why. when i already login to windows before running project then why should i again give my windows credential to access asp.net web project any secure pages.

<authentication mode="Windows"/>
<authorization>
    <deny users="?"/>
</authorization>

so guide me how to suppress the login dialog pop up. thanks

有帮助吗?

解决方案

You need to configure your browser to automatically log you in. Your site probably needs to be in the local intranet zone. Windows Integrated Authentication is built into Internet Explorer. Some other bowsers may not support it.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top