3
的DISPLAYMODE後綴使用ASP.NET MVC 4我設置顯示模式後綴爲「CAT」:獲取正在使用MVC 4
DisplayModeProvider.Instance.Modes.Insert(1, new DefaultDisplayMode("CAT")
{
ContextCondition = (ctx => some condition)
});
在孩子控制器我需要知道它正在運行的後綴是什麼under,bascially「CAT」
[ChildActionOnly]
public ActionResult MainMenu(){
var cat = getthesuffix() ??????
}