我们如何在 asp.net mvc 和 core 中管理会话?

How can we manage session in the asp.net mvc and core?

我想在asp.net核心mvc中实现。如果有人知道,请告诉我。

感谢您的建议。对我们很有帮助。

    const string SessionName = "_Name";  
    const string SessionAge = "_Age";  
    public IActionResult Index()  
    {  
        HttpContext.Session.SetString(SessionName, "Jarvik");  
        HttpContext.Session.SetInt32(SessionAge, 24);  
        return View();  
    }  

    public IActionResult About()  
    {  
        ViewBag.Name = HttpContext.Session.GetString(SessionName);  
        ViewBag.Age = HttpContext.Session.GetInt32(SessionAge);  
        ViewData["Message"] = "Asp.Net Core !!!.";  

        return View();  
    }