1

我希望来自同一域名的所有用户:XYZ 访问我的应用程序下面是我的代码。

<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <authentication mode="Windows"  />
    <authorization>
        <allow users="XYZ\HOW TO GRANT ACCESS TO ALL THE USERS HERE?" />
        <deny users="*" />
    </authorization>
    <identity impersonate="true" />
</system.web>
4

2 回答 2

2

您可以使用域用户

<authorization>
  <allow roles="XYZ\Domain Users"/>
</authorization>
于 2013-05-22T23:40:06.477 回答
1

试试这个,同时禁用匿名身份验证,只启用集成 Windows 身份验证。

`<authentication mode="Windows" />
   <authorization>
   <allow roles="XYZ\Domain Users" />
   <deny users="*" />
 </authorization>`
于 2013-05-23T00:05:00.147 回答