Is it possible to access ViewContext
from class library? I am in need of getting names of current View and Controller's action. I added both System.Web.dll
and System.Web.Mvc
in my class library project but still unable to find a way to get what I require.
Although I can access current context using System.Web.HttpContext.Current
.
You can access current route information like this:
var httpContext = new HttpContextWrapper(HttpContext.Current);
var routeData = System.Web.Routing.RouteTable.Routes.GetRouteData(httpContext);
var controllerName = routeData.Values["controller"].ToString();
var actionName = routeData.Values["action"].ToString();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With