I am creating a custom action filter for asp.net MVC.
In the OnActionExecuting() method.
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
string userName = ?????// how can I get this?
}
I need to find out the current users name (I am using forms authentication)
In the controller I can simply just do User.Identity.Name
Is there a way to get the users name in the ActionFilter?