How to Get current controller or action name in ASP.NET MVC
By FoxLearn 2/18/2024 1:15:07 AM 143
This tutorial shows you how to get current controller or action name in ASP.NET MVC using c# code.
As you know, The RouteData object contains information about the current routing path.
To get a current controller name you can write
@ViewContext.RouteData.Values["controller"].ToString()
and get a current action name
@ViewContext.RouteData.Values["action"].ToString()
- Getting Started with ASP.NET Core 3.0
- How to fix 'Authorization in ASP.NET Core' with 401 Unauthorized
- The name 'Session' does not exist in the current context
- How to create a Toast Notifications in ASP.NET Core
- How to fix Font Awesome WebFont woff2 not working BundleConfig
- How to Minify HTML using WebMarkupMin in ASP.NET Core
- How to Minify HTML using WebMarkupMin in ASP.NET MVC
- How to Minify HTML output from ASP.NET MVC