Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
217 views
in Technique[技术] by (71.8m points)

ASP.NET MVC Filter AuthorizeAttribute 怎么设置例外?

 [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
    public class LoginFilter : AuthorizeAttribute {……}
    

这样写的话所有的页面包括login页面都会被过滤掉,我希望login页面除外,应该在哪里设置?

在web.config里里写了也没有起作用。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
public override void OnAuthorization(AuthorizationContext filterContext)
        { 
            string path = filterContext.HttpContext.Request.CurrentExecutionFilePath;
            if (path.StartsWith("/Home/Index",StringComparison.CurrentCultureIgnoreCase)) { return; }

            HttpCookie cookieName = System.Web.HttpContext.Current.Request.Cookies.Get("name");
            
            //判断Cookie用户名密码是否存在 
            if (cookieName == null)
            {
                filterContext.Result = new RedirectResult("/Home/Index");
            }
        }
        
    

[AllowAnonymous] 是无效的。

参考1

参考2


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to MLink Developer Q&A Community for programmer and developer-Open, Learning and Share
...