I am using some 3rd party classes. I want to get the routevalues of my controller in that. Unfortunately it doesn\'t hand me the current controller that is executing. Can I get
You can search the values of "controller" and "action" in this object
"controller"
"action"
HttpContext.Request.RequestContext.RouteData.Values
Not sure in what context you are executing, but you can get it from the RequestContext:
RequestContext.RouteData.Values["controller"].ToString()