编辑:
我尝试将以下内容添加到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将尝试检查并查看用户是否已登录.如果没有经过身份验证的用户,将拒绝访问.