Set Culture in an ASP.Net MVC app

I’m using this localization method and added a route parameter that sets the culture and language whenever a user visits example.com/xx-xx/ Example: routes.MapRoute(“DefaultLocalized”, “{language}-{culture}/{controller}/{action}/{id}”, new { controller = “Home”, action = “Index”, id = “”, language = “nl”, culture = “NL” }); I have a filter that does the actual culture/language setting: using System.Globalization; using … Read more