Asp.net core中使用Session

添加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

相關文章
相關標籤/搜索