开发者

How to get current route information in OnActionExecuting

My URLs look like:

www.exam开发者_JAVA百科ple.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);
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜