Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
httpコンテキストクラスから現在のコントローラー名を取得するメソッドはありますか?
はい、あなたはそのようなことをすることができます
HttpContext.Current.Request.RequestContext.RouteData.Values["controller"].ToString();
ビューにいる場合は、次のことができます。
ViewContext.RouteData.Values["Controller"]