I am using
TempData["hdn"] = "1";
in controller
If I use this
@{
var hdn = (string)TempData["hdn"];
}
in View, TempData["hdn"]
value in getting null in POST. If I skip this code in view it persists in POST. Why this is happening?
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With