I have two controllers:
parent controller inherits from Controller.
public class ApplicationController : Controller { public ApplicationController() { } }
child controller inherits form above mentioned class.
public class LayoutController : ApplicationController { public ActionResult Index() { } }
and have Initialize method in parent controller.
protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
}
and my question is that when "Initialize" method called then action is not call.