I'm using ASP.Net MVC Authentication, SqlMembershipProvider to be specific.
I have a website that has multiple login forms across the site. Some of which do not have controllers that I am exposed to (as the login pages are part of closed source CMS).
I'm trying to create a record of user login history - and in order to do this, I need to hook into some kind of event which ideally is fired globally when a user logs into the SqlMembershipProvider.
Does anyone know if there is a global C# event that I can use to detect when a user logs into their account?
Thanks