How To Use Sessions In ASP.NET Core

Introduction

In this article, you will learn how to use your C# coding prowess to set up the session state in your ASP.NET Core and MVC Core Web applications.

Create your core application

Step 1. Open Visual Studio and select File >> New Project.

New Project

The ”New Project” window will pop up. Select .NET Core and select “ASP.NET Core Web Application”. Name your project and click “OK”.

Web App

A "New Project" window will pop up. Select Web Application and click “OK”, as shown below.

MVC

Nuget Package

Packages Required

We need to install the stable version of “Microsoft.AspNetCore.Session” from the NuGet Package Manager. Then only we can access the session state in ASP.NET Core. Click on the “Install” button.

Session Install

Step 3. Now, double-click “HomeControllers.cs”. The following is an example of a session sharing in ASP.NET Core.

using System;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Session_State.Models;

namespace Session_State.Controllers
{
    public class HomeController : Controller
    {
        private const string SessionName = "_Name";
        private const string SessionAge = "_Age";

        public IActionResult Index()
        {
            // Set session data
            HttpContext.Session.SetString(SessionName, "Jarvik");
            HttpContext.Session.SetInt32(SessionAge, 24);

            return View();
        }

        public IActionResult About()
        {
            // Retrieve session data
            ViewBag.Name = HttpContext.Session.GetString(SessionName);
            ViewBag.Age = HttpContext.Session.GetInt32(SessionAge);
            ViewData["Message"] = "ASP.NET Core!";

            return View();
        }

        public IActionResult Contact()
        {
            ViewData["Message"] = "Your contact page.";
            return View();
        }

        public IActionResult Error()
        {
            return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
        }
    }
}

Step 4. Now, double-click” Startup.cs” to configure the services. The very first step we need to take is to add the session service to the container so that we can add the services in the “configureServices” function.

public void ConfigureServices(IServiceCollection services)
{
    // Add distributed memory cache for session
    services.AddDistributedMemoryCache();

    // Configure session options
    services.AddSession(options => 
    {
        options.IdleTimeout = TimeSpan.FromMinutes(1); // Set session timeout
    });

    // Add MVC services
    services.AddMvc();
}

Configure the HTTP Request Pipeline

Now, in the same class, we add “app.Usersession()” inside the “configure” function so that it gets called by the runtime.

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
        app.UseBrowserLink();
    }
    else
    {
        app.UseExceptionHandler("/Home/Error");
    }

    app.UseStaticFiles();
    
    app.UseSession();

    app.UseMvc(routes =>
    {
        routes.MapRoute(
            name: "default",
            template: "{controller=Home}/{action=Index}/{id?}");
    });
}

Now, run your project. You will see the output of an Active Session below.

Output with Session

Let us set “one” minute as the Session TimeOut in the “ConfigureServices” function of the “Startup.cs” class.

services.AddSession(options => {
options.IdleTimeout = TimeSpan.FromMinutes(1);//You can set Time
});

Session Expires

Session Expires

That's it. I hope you have found this article helpful. Do let me know via comments and likes.