TempData value not persisting if used in view
TempData values are cleared after they are read.
if you want the value back in the controller after you have read it in the view, then you will need to include it in a hidden field and then read it out from the form values.
something like:
<input type="hidden" name="hdn" value="@hdn" />
Then in your controller, you can do:
var hdn = Request.Form["hdn"]
HTH
TempData
is like ViewData but with a difference. It can contain data between two successive requests, after that they are destroyed.
If you want to keep TempData
value the use
TempData.Keep()
Example:
var hdn= TempData["hdn"]; //it is marked for deletion
TempData.Keep("hdn"); //unmarked it
MSDN Docs for Keep
A TempData
key & value set will be deleted after it has been called. Satpal talked about Keep, but you can also use Peek if you want to be explicit about every time you want to retrieve it without having it deleted.
TempData.Peek(String)
Example:
var hdnNotDeleted = TempData.Peek["hdn"];
MSDN Documentation for Peek