I am implementing a Custom Identity class for an ASP.Net 4.0 site with Forms Authentication based on this tutorial:
I have several apps on a single domain that share the formsauthentication ticket for single sing-on. We also have javascript on each page that will warn the user 2 minutes prior to his session expirat
I am using the code belowto access a page base based upon user authentication if (user.FirstOrDefault() == HashedPassword)
I am using Forms authentication in my asp.net 4.0 application (upgraded from .NET 1.1). I explicitly create the FormsAuthenticationTicket object, then encrypt it (using a开发者_如何学编程 FormsAuthent
I have a bunch of wcf webhttp (rest) services that expect an auth cookie. Question is - How do I pass the formsauth ticket to the wcf service? Flowing authentication works for get requests through the
This is an MVC2 website, I am having a problem with a FormsAuthentication ticket. A user timeouts after 30 minutes cannot re-login.开发者_运维技巧 During testing, the DateTime.Now.AddMinutes(30) value
My user is Authenticated but has extra information stored in a FormsAuthenticationTicket then a cookie.
I am looking for a solution where we can make a FormsAuthenticationTicket (and corresponding cookie) with a very long expiration p开发者_开发知识库eriod. This is possible by setting a high value or us
Almost the same question has been asked a year ago, but the there has been some new development in this area.