How do you get the current area name in the view or controller?
Is there anything like ViewContext.RouteData.Values[\"controller\"] for areas?
ViewContext.RouteData.Values[\"controller\"]
I know this is a very very old post but we can use the Values Property exactly the same way as the DataTokens
Url.RequestContext.RouteData.Values["action"] worked for me.