asp.net mvc and check for if a user is logged in
问题 I'm new in asp.net mvc and i need to check if a user is logged in or not in my application so i place the following piece of code in my global.asax void Application_PreRequestHandlerExecute(object sender, EventArgs e) { HttpApplication application = (HttpApplication)sender; HttpContext context = application.Context; string filePath= context.Request.FilePath; string fileExtention = VirtualPathUtility.GetExtension(filePath); // to skip request for static content like (.css or .js) if