vote up 5 vote down star
4

I have a shared master view for all my other views. It's in this master view I show the menu. Now I need to find out in what controller I'm currently in so I can disable/enable certain menu options.

For example it should be possible to press the "foo" link if I'm current in the "foo" controller.

How Can I do this?

flag

2 Answers

vote up 7 vote down check

Could you use?

<%=Html.ViewContext.RouteData.GetRequiredString("controller") %>

Kindness,

Dan

link|flag
vote up 8 vote down

You can find it with the viewcontext

link|flag
Think ViewContext should hold this info. – Damien Sep 15 at 13:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.