配置session
1、在Startup.cs的ConfigureServices方法中增加services.AddSession();
2、在Startup.cs的Configure方法中增加app.UseSession();(在UseRouting之后和UseEndpoints之前调用 UseSession)
@using Microsoft.AspNetCore.Http;//一定要引用,不然会出错
@{
HttpContext context = this.Context;
string value = context.Session.GetString("key");
}
- 本文标题: netcore中对session的使用,包括cshtml如何调用session
- 文章分类:【.NET/Web】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.