当前位置:主页 > 软件编程 > .NET代码 >

asp.net(C#)清除全部Session与单个Session的方法

时间:2023-01-16 12:00:18 | 栏目:.NET代码 | 点击:

实例如下:

Session.Abandon();//清除全部Session
//清除某个Session
Session["UserName"] = null;
Session.Remove("UserName");

您可能感兴趣的文章:

相关文章