I wanted to set a css class in my master page depending on the current controller and action. I can get to the current controller via ViewContext.Controller.GetType().Name, but how do I get the current action? (ie Index, Show etc)
|
feedback
|
|
Use the ViewContext and look at the RouteData collection to extract both the controller and action elements. But I think setting some data variable that indicates the application context (e.g., "editmode" or "error") rather than controller/action reduces the coupling between your views and controllers. | ||||
|
feedback
|
|
In the RC you can also extract route data like the action method name like this
Update Feb 09, 2011 In MVC 3 the above example no longer works. This code should be used instead:
| |||||
feedback
|
|
To get the current Id on a View:
To get the current controller:
| |||
|
feedback
|
|
I know this is an older question, but I saw it and I thought you might be interested in an alternative version than letting your view handle retrieving the data it needs to do it's job. An easier way in my opinion would be to override the OnActionExecuting method. You are passed the ActionExecutingContext that contains the ActionDescriptor member which you can use to obtain the information you are looking for, which is the ActionName and you can also reach the ControllerDescriptor and it contains the ControllerName.
Hope this helps. If anything, at least it will show an alternative for anybody else that comes by your question. | |||||
feedback
|
|
I saw different answers and came up with a class helper:
So in View (or master/layout) you can use it like so (Razor syntax):
Hope it helps. | |||||
feedback
|
|
In MVC you should provide the View with all data, not let the View collect its own data so what you can do is to set the CSS class in your controller action.
and pick out this value from your ViewData in your View | |||||||||
feedback
|
|
I vote for this 2:
and
You can retrive both physical name of current view and action that triggered it. It can be usefull in partial *.acmx pages to determine host container. | |||
|
feedback
|
|
You can get these data from RouteData of a ViewContext
| |||
|
feedback
|
|
Extending Dale Ragan's answer, his example for reuse, create an ApplicationController class which derives from Controller, and in turn have all your other controllers derive from that ApplicationController class rather than Controller. Example:
On your new ApplicationController create a property named ExecutingAction with this signature:
And then in the OnActionExecuting method (from Dale Ragan's answer), simply assign the ActionDescriptor to this property and you can access it whenever you need it in any of your controllers.
| ||||
|
feedback
|