Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为 SSO 集成 Windows 身份框架 (WIF),WIF 的联合身份验证模块在网站的每个页面上触发,将用户发送到我想要在我的网站的某些页面上未应用身份验证的登录 Pgae。
您可以将波纹管添加到 web.config 中,它将允许所有用户访问该位置。
<location path="Default.aspx"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location>
在上面的示例中,我允许所有用户访问 Default.aspx 页面。
希望这可以帮助。