I have a basecontroller like this
[Action]
public abstract class ApplicationController : Controller
{
public bool HasRight { get { return ((bool)ViewData["Actions2"]); } }
.........
}
Action Attribute
public class ActionAttribute : ActionFilterAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext)
{
filterContext.Controller.ViewData["Actions2"]=true;
.........
}
}
When i call some view from certain controller I get null exception at
public bool HasRight { get { return ((bool)ViewData["Actions2"]); } } as ViewData is null
I think you're looking for
OnActionExecuting
which is executed before your Controller action and notOnActionExecuted
.This should work: