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

  • SEARCH
  • Home
  • 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 8366711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T12:59:02+00:00 2026-06-09T12:59:02+00:00

I have multiple cookies with the same name, domain and path, but different values.

  • 0

I have multiple cookies with the same name, domain and path, but different values. This is not by design – I am trying to fix this, but cannot delete them. I have tried multiple code variations. Here is one:

string[] cookies = Request.Cookies.AllKeys;
HttpCookie cookie;
string cookieName;
string cookieValue;
for (int i = 0; i < cookies.Count(); i++)
{
  cookieName = Request.Cookies[i].Name;
  if (cookieName == "ASP.NET_SessionId")
  {
    //  Do not delete session cookie or we will be logged out
    continue;
  }

  cookieValue = Request.Cookies[i].Value;
  cookie = new HttpCookie(cookieName);
  cookie.Value = "";
  cookie.Expires = DateTime.Now.AddDays(-1);
  Response.Cookies.Add(cookie);
}

And here is another:

string[] cookies = Request.Cookies.AllKeys;
for (int i = 0; i < Request.Cookies.AllKeys.Count(); i++)
{
    if (Request.Cookies[i].Name == "ASP.NET_SessionId")
    {
        //  Do not delete session cookie or we will be logged out
        continue;
    }

    Request.Cookies[i].Expires = DateTime.Now.AddDays(-1);
}

When I list the cookies in Request.Cookies, the “deleted” cookies show up with an expiration date of yesterday, but there are other cookies that show up with an expiration date of 1/1/0001. These are the ones that just won’t take a hint and take a hike.

Help greatly appreciated.

  • 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-06-09T12:59:03+00:00Added an answer on June 9, 2026 at 12:59 pm

    Have you tried setting the expire date a year into the past instead of 1 day?

    Here is a post on the deleting cookies. In his code he sets the date back 30 years.

    Set the domain on the cookies.

      cookieValue = Request.Cookies[i].Value;
      cookie = new HttpCookie(cookieName);
      cookie.Value = "";
      cookie.Domain = "dev.domain.com";
      cookie.Expires = DateTime.Now.AddDays(-1);
      Response.Cookies.Add(cookie);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to have multiple XmlHttpRequests use different sets of cookies, to keep multiple
I have one domain (domain.com) with multiple sub-pages that have different sessions (by default)
I have multiple input text fields grouped in divs: <div class=container0> <input class=containerItem0 name=containerItem[0][0]
I have multiple arrays with string values and I want to compare them and
I have multiple subdomains trying to use a single subdomain for authentiction using forms
Is it possible to have the same session be active across multiple open windows
I have multiple projects with directory structure like this: /application/ /images/ /js/ /css/ /system/
How can I have multiple cookies for each Client/PC to run a script? If
I'm using vanilla forms authentication. If I have multiple sessions open as the same
I would like to set a specific cookie domain for my cookies, because this

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.