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)
|
3
|
|||
|
|
|
|
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. |
|||
|
|
|
|
In the RC you can also extract route data like the action method name like this
|
||
|
|
|
|
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 |
||||||
|
|
|
To get the current Id on a View:
To get the current controller:
|
||
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
