I try make internationalization using this tutorial, the problem is that the basecontroller is not execute.
public class BaseController : Controller
{
protected override void ExecuteCore()
{
........
base.ExecuteCore();
}
}
public class HomeController : BaseController
{
public ActionResult Index()
{
...
return View();
}
}
I can use BeginExecuteCore
ReplyDeleteprotected override IAsyncResult BeginExecuteCore(AsyncCallback callback, object state)
{
return base.BeginExecuteCore(callback, state);
}