问题
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?
回答1:
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
回答2:
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
回答3:
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
回答4:
If your controller action returns a ViewResult
, and you are tempted to put data into TempData
,
Don’t do That.Use ViewData/ViewBag
, instead, in this case.
TempData
is meant to be a very short-lived instance, and you should only use it during the current and the subsequent requests only. Since TempData
works this way, you need to know for sure what the next request will be, and Redirecting
to another View
is the only time you can guarantee this. Therefore, the only scenario where using TempData
will Reliably work is when you are Redirecting. So Keep in Mind.
The best ever explanation: http://sampathloku.blogspot.com/2012/09/how-to-use-aspnet-mvc-tempdata-properly.html
来源:https://stackoverflow.com/questions/18487150/tempdata-value-not-persisting-if-used-in-view