TempData value not persisting if used in view

…衆ロ難τιáo~ 提交于 2019-12-05 08:11:20

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

Satpal

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 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!