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 275075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:42:31+00:00 2026-05-12T00:42:31+00:00

I am having a problem where a cookie I am setting is being lost

  • 0

I am having a problem where a cookie I am setting is being lost directly after RedirectToAction() is called. Is something going on behind the scenes that invalidates the current request and creates a new one that causes the cookie to be lost before it has been persisted to disk?

I understand that if you want data to be available after the redirect you need to use TempData, but is that the same for cookies? If so, doesn’t that seem ugly to have to store the cookie value in TempData and then write the cookie later?

Update:

I just realized that the cookie is lost at the end of the request, it doesn’t matter if I call RedirectToAction(). So now the question is why wont the cookie persist accros two requests? (I update the code below to show what I am doing now)

public ActionResult DoSomething()
{
   Response.Cookies["SomeCookie"].Value = "Jarified";
   Response.Cookies["SomeCookie"].Expires = DateTime.UtcNow.AddDays(3);

   return View("SomeView");

}

Update

I created a new MVC project using the default template. I modified the HomeController/Index action to have the code below. The first time I hit the view “Cookie Not Found” is printed as expected. However, every subsequent time the same message is printed. If I remove the line that sets the expiration date then everything works just fine. I guess the real question here is why does making the cookie persistent cause the browser to throw it away? Is there a trick to making cookies persistent in MVC?

    public ActionResult Index()
    {
        HttpCookie cookie = Request.Cookies["temp"];
        if (cookie == null)
        {
            ViewData["Message"] = "Cookie Not Found";
            Response.Cookies["temp"].Value = "Welcome to ASP.NET MVC!";
            Response.Cookies["temp"].Expires = DateTime.UtcNow;
        }
        else
        {
            ViewData["Message"] = cookie.Value;
        }
        return View();
    }
  • 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-12T00:42:31+00:00Added an answer on May 12, 2026 at 12:42 am

    The reason that

    Response.Cookies["temp"].Expires = DateTime.UtcNow;
    

    is not working is that it sets a cookie with an expires in the past (at least for me).

    It works when I change it to

    Response.Cookies["temp"].Expires = DateTime.UtcNow.AddDays(3);
    

    Setting a cookie expires property to the past will delete the cookie.

    This code works for me:

        public ActionResult Index() {
            HttpCookie cookie = Request.Cookies["temp"];
            if (cookie == null) {
                ViewData["Message"] = "Cookie Not Found";
                Response.Cookies["temp"].Value = "This is a cookie: Welcome to ASP.NET MVC!";
                Response.Cookies["temp"].Expires = DateTime.UtcNow.AddDays(3);
            } else {
                return RedirectToAction("Something");
            }
            return View();
        }
    
        public ActionResult Something() {
            HttpCookie cookie = Request.Cookies["temp"];
            ViewData["Message"] = cookie.Value;
            return View();
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 206k
  • Answers 206k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Option 1: @implementation commonClass + (void)CommonMethod:(id)sender /* note the +… May 12, 2026 at 9:06 pm
  • Editorial Team
    Editorial Team added an answer assuming you are limiting the dates somewhere using value of… May 12, 2026 at 9:06 pm
  • Editorial Team
    Editorial Team added an answer Single (or float) only has seven significant digits, so everything… May 12, 2026 at 9:06 pm

Related Questions

I want to bounce an idea around. I have been building web services and
we have a big community website build in drupal, where the site has a
What is the best way to password protect folder using php without a database
I am having a problem where a routine (that I cannot modify) is returning

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.