asp.net core 中 Session的使用

1:配置startup.cs
asp.net core 中 Session的使用_第1张图片
asp.net core 中 Session的使用_第2张图片
2:使用方法
HttpContext.Session.SetString(“name”, “lisi”);//放置string数据
//HttpContext.Session.Remove(“name”);//清楚数据
string name1 = HttpContext.Session.GetString(“name”);//取出数据
HttpContext.Session.SetInt32(“age”, 32);//防止int数据
int? age = HttpContext.Session.GetInt32(“age”); //取出int数据
在Session的积累里面有对应不同数据类型的操作方法

你可能感兴趣的:(基础学习)