gpt4 book ai didi

c# - 在 asp.net 中使用 c# 进行 session 管理

转载 作者:太空宇宙 更新时间:2023-11-03 20:22:36 24 4
gpt4 key购买 nike

我想在 asp.net 应用程序中进行 session 管理,所以每当我注销时,我的其他 aspx 页面都无法打开。

请告诉我简单的方法。

我是 c# 和 Asp.net 的新手,所以请忽略我的提问方式。

最佳答案

当用户注销时。做以下

Session.Clear();
Session.Abandon();

在母版页(或所有其他需要限制的页面)上,勾选

If (Session["sessionname"] == null)
{
Respones.Redirect("MyTimeOutPage.aspx");
}

-温和

关于c# - 在 asp.net 中使用 c# 进行 session 管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12595918/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com