Session Variables
public class HomeController: Controller{
public ActionResult Index(){
Session["MySessionData"] = "some session data"; // this data will preserved and available across sessions and actions
return RedirectToAction("Home", "Home");
}
public ActionResult Home() {
//Session["MySessionData"] is available and hence can be used in Home view
return View();
}
}<div>
My data I received from controller is:
@Session["MySessionData"]
</div>Last updated