I am using MVC3 and have some logic to change the culture in which everything works fine. My problem is that there are several places where this change should be made, and I'm not sure where there will be a better place for this.
Some examples show an override for each action from within such a controller:
protected override void OnActionExecuted(ActionExecutedContext filterContext) {
While the more traditional way I'm used to seeing is doing this in the Global.asax file as follows:
protected void Application_BeginRequest(object sender, EventArgs e) {
What is the recommended place for this?
source share