Home > Software engineering >  How can we manage session in the asp.net mvc and core?
How can we manage session in the asp.net mvc and core?

Time:10-20

I want to implement in the asp.net core mvc. If anyone know then let me know.

CodePudding user response:

Thanks for your suggestion. It's very helpful to us.

    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();  
    }
  • Related