up vote 6 down vote favorite
4
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Could you use?

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

Kindness,

Dan

link|improve this answer
feedback

You can find it with the viewcontext

link|improve this answer
Think ViewContext should hold this info. – Damien Sep 15 '09 at 13:53
feedback

Your Answer

 
or
required, but never shown

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