I'm having a lot of problems with FormsAuthentication and as as potential work around I'm thinking about storing the login
in the Session
?
Login:
Session["Auth.ClientId"] = clientId;
IsAuthenticated:
Session["Auth.ClientId"] != null;
Logout;
Session["Auth.ClientId"] == null;
I'm not really using most of the bells and whistles of FormsAuthentication
anyway. Is this a bad idea?