The codeigniter (PHP) framework support functionality call FlashData. Flashdata for those of you who do not know is a session which is only valid for one page request. Information on Flashdata (half way down the page).
I want to know if MVC3 supports a similar function to this?
EDIT::
With the aid of answers below I found the following link which describes the TempData functionality:
Temp data, ViewBag, View Data in MVC
It’s called TempData and does exactly the same thing.
It’s also useful to note that you can implement TempData providers so you could do one that didn’t require Session.