gpt4 book ai didi

c# - 如何在 asp.net c# 中实现注销功能

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

你好

我如何在我的页面上实现注销功能,以便将用户重定向到新页面并且不允许查看上一页。

最佳答案

  if (SessionConfig.Current.UserType != null)
Response.Redirect("~/Logout.aspx?UserType=" + SessionConfig.Current.UserType,false);
else
Response.Redirect("~/Default.aspx",false);

其中 sessionconfig 是一个已经声明的 session 变量。

 public static SessionConfig Current
{
get
{
SessionConfig session =
(SessionConfig)HttpContext.Current.Session["__SessionConfig__"];
if (session == null)
{
session = new SessionConfig();
HttpContext.Current.Session["__SessionConfig__"] = session;
}
return session;
}
}

只需将其放入按钮单击事件中,然后在 homepage.aspx 中更改为您的主页。它将重定向页面,您看不到旧页面

关于c# - 如何在 asp.net c# 中实现注销功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4171868/

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