这是我的旧代码
protected override bool OnPreAction(string actionName, System.Reflection.MethodInfo methodInfo)
{
if ("|Register|RegisterPage|Login|LoginPage|Logout|Service".ToLower().Contains(actionName.ToLower()))
{
return base.OnPreAction(actionName, methodInfo);
}
Customer = CustomerHelper.GetCustomer();
if (Customer.IsSeccessedLogin())
{
return base.OnPreAction(actionName, methodInfo);
}
Response.Redirect("Login.html");
return false;
}
最佳答案
string actionName = (string)filterContext.RouteData.Values["action"];
关于asp.net-mvc - 如何在ActionFilter中获取actionName?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/246143/