my urls look like:
www.example.com/{languagecode}/{controller}/{action}/{id}
where language code is en-us, etc.
From the OnActionExecuting event, how can I get these values?
my urls look like:
www.example.com/{languagecode}/{controller}/{action}/{id}
where language code is en-us, etc.
From the OnActionExecuting event, how can I get these values?
protected override void OnActionExecuting(System.Web.Mvc.ActionExecutingContext filterContext)
{
var languagecode = filterContext.RouteData.Values["languagecode"];
base.OnActionExecuting(filterContext);
}