我有一个MVC
站点,使用[授权]
属性进行保护,但在生产网站上遇到问题,该网站在不同服务器上的一对或多个
站点上使用单点
登录.我想将身份验证作为原因;有没有办法通过web.config暂时
关闭身份验证,以便可以访问具有授权
属性的所有或部分Controller操作而无需
登录?
编辑:
我尝试将以下内容添加到web.config:
<authentication mode="None" />
但这会导致使用“授权属性”修饰的所有操作都呈现空白页面.没有授权的操作会继续有效
is there a way to temporarily turn off the Authentication through
web.config so that all or some Controller Actions that have the
Authorize Attribute can be accessed without logging in?
不,这对于默认框架是不可能的.我很确定MVC源代码中的AuthorizeAttribute将尝试检查并查看用户是否已登录.如果没有经过身份验证的用户,将拒绝访问.
原文链接:https://www.f2er.com/aspnet/248815.html