TempData not carrying over during RedirectToAction

I have come across these sorts of limitations with TempData before. I found it unrealiable and sporadic at best.

You need to consider what you are trying to achieve. If you do need to store data, in practice the best place to do this is in a db (or store of sorts) it might seem a bit overkill but that is their purpose.

Two other points:

  1. Someone can hit your RegisterController Index method without going to the other before, in which case your code would break.

  2. If you are doing a multiple wizard style process, why not store the data in its partial state in the db, and complete the process only on the last screen? In this way no matter, where they stop/start or pick it up again, you will always know where they are in the process.


I've had an issue where TempData got lost during the redirect on my local machine.

I've checked web.config sessionState Setting which was InProc and therefore no problem.

It turned out that I got another setting in web.config, which was taken from production system. It looked like this:

<httpCookies requireSSL="true" />

After turning the requireSSL to false TempData workes fine.


I had the same problem today.

In this link some guys explain that RedirectAction method returns a HTTP 302 status to the browser, which causes the browser to make a new request and clear the temp, but I tried returning HTTP methods 303 (which is what the RedirectAction should be returning) and 307 also, and it didn't solve anything.

The only way of fixing the issue of TempData in my case was changing the sessionState directive of web.config to use StateServer instead of the default InProc. i.e:

<system.web>
    <sessionState mode="StateServer" cookieless="AutoDetect" timeout="30" stateConnectionString="tcpip=localhost:42424"></sessionState>
    ...
</system.web>

I figured this out when reading this Greg Shackles' article, where he explains how TempData works and build a custom TempDataProvider, which rely on MongoDB database instead of session like the default one.

Hope that my 4 hours researching helps someone to not waste their time.