添加Session Nuget包app
更新Startup.cs文件code
在ConfigureServices方法中添加以下代碼
services.AddSession(options =>
{
// Set a short timeout for easy testing.
options.IdleTimeout = TimeSpan.FromSeconds(3);
options.CookieHttpOnly = true;
});
在Configure方法中添加以下代碼blog
app.UseSession();
使用Sessionget