vote up -1 vote down star

Hi

I have my own linq to sql database with a nice login method which gives me back a user.

I have followed the 101 examples there on the web as to how to add the cookie to the client.

            FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(
                1,
                _u.id.ToString(), 
                DateTime.Now, 
                DateTime.Now.AddDays(14), 
                true, 
                "hi", 
                FormsAuthentication.FormsCookiePath);

        string hash = FormsAuthentication.Encrypt(ticket);

        HttpCookie cookie = new HttpCookie(FormsAuthentication.FormsCookieName, hash);   

        if (ticket.IsPersistent) cookie.Expires = ticket.Expiration;

        //Response.Cookies.Add(cookie);

        //FormsAuthentication.RedirectFromLoginPage(_u.name, _remember);
        FormsAuthentication.SetAuthCookie(_u.name, _remember);

And sure enough it does get added. But when I inspect it, its expiration says end of session, not two weeks as specified. So when a user tries to come back to the site after closing the browser, they have to log in.

Any ideas?

flag

70% accept rate
_remember is true? It needs to be for the cookie to be persistent. – tvanfosson Nov 26 '08 at 15:34
But i just debugged it to check I'm not insane :p And I can confirm it is true. Gah this is annoying. – qui Nov 26 '08 at 15:36
You might still be insane though. – Tom Martin Nov 26 '08 at 16:58

1 Answer

vote up 2 vote down

I fail.

In firefox i had it so cookies were killed after i kill the browser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.