Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 940299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:55:58+00:00 2026-05-15T21:55:58+00:00

What are the exact steps required for a cookie to persist after a browser

  • 0

What are the exact steps required for a cookie to persist after a browser is closed? At the moment I have:

  1. createPersistentCookie set to true on LoggedIn event.
  2. MachineKey specified.
  3. Forms sliding expiration set to true.

As long as the browser is open, the user will stay logged in, but as soon as it’s closed, and it doesn’t matter for how long, the user will need to log in again. What am I missing?

EDIT:
I went through the article pointed out by marapet (see comments below) and it made me interested in whether the ticket does indeed have IsPersistent flag, which it does. The decrypted ticket looks like this:
System.Web.Security.FormsAuthentication.Decrypt(Request.Cookies[System.Web.Security.FormsAuthentication.FormsCookieName].Value)
{System.Web.Security.FormsAuthenticationTicket}
CookiePath: "/"
Expiration: {19/08/2010 17:27:14}
Expired: false
IsPersistent: true
IssueDate: {19/07/2010 17:27:14}
Name: "alex"
UserData: ""
Version: 2

All the details are correct, and correspond to those I set in LoggedIn event. More over the cookie value I can retrieve from the cookie directly, is identical to this one. Yet as soon as I close the browser, the cookie is lost.

What I have noticed, however, is that the cookie carrying the ticket has it’s date reset for some reason. Firstly I can’t override settings in web.config, so at the end of LoggedIn event it’s Expires property is 4000 minutes after issue date, not a month which I am setting programmatically. Then after page load the cookie I retrieve with FormsAuthentication.FormsCookieName has Expires property of 01/01/0001. I think perhaps this is where the problem lies? Any thoughts would be appreciated.

EDIT#2:
I am changing both title and tags to include session, as it turned out to be relevant for the problem/solution

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T21:55:58+00:00Added an answer on May 15, 2026 at 9:55 pm

    So I found the solution, eventually. As it turns out, it wasn’t the problem with the authentication cookie as such (it was retained correctly, or rather would have been if the handler didn’t remove it, having incorrectly decided that a user wasn’t logged in based on the missing session). The problem was that the Session cookie was lost, or wasn’t identified properly. So the fix was to manually add a session cookie during log on like so:

    HttpCookie authCookie = new HttpCookie("ASP.NET_SessionId", Session.SessionID);
    authCookie.Domain = ".mydomain.com";
    authCookie.Expires = DateTime.Now.AddMonths(1);
    Response.Cookies.Add(authCookie);
    

    Now when the browsers opens again the session is identified properly and user session restored.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Closed as exact duplicate of How can I find the method that called the
Ok Here is the exact scenario: I have a view named Index I have
I seem to have the exact opposite problem than this question on stopping dock
Exact Duplicate of: Getting the size (free,total) of a Windows Mobile phone drive using
Exact duplicate of Is there a way to determine whether an e-mail reaches its
Exact duplicate: Split a string by spaces -- preserving quoted substrings -- in Python
The exact error is as follows Could not load file or assembly 'Microsoft.SqlServer.Replication, Version=9.0.242.0,
( Almost exact duplicate of Keeping original format POST passing through AWK submitted by
I need to support exact phrases (enclosed in quotes) in an otherwise space-separated list
Is there an exact overview what has changed in the SP1 for .NET 3.5?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.