以编程方式注销ASP.NET用户

编程入门 行业动态 更新时间:2024-10-28 11:22:52
本文介绍了以编程方式注销ASP.NET用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我的应用允许管理员暂停/取消暂停用户帐户.我使用以下代码执行此操作:

My app allows an admin to suspend/unsuspend user accounts. I do this with the following code:

MembershipUser user = Membership.GetUser(Guid.Parse(userId)); user.IsApproved = false; Membership.UpdateUser(user);

上面的方法可以很好地挂起用户,但不会撤消他们的会话.因此,只要保留了他们的会话cookie,被暂停的用户就可以继续访问该应用程序.任何修复/

The above works fine to suspend the user, but it does not revoke their session. Consequently, the suspended user can remain with access to the application as long as their session cookie remains. Any fix/

推荐答案

无法从会话的外部"放弃会话.您必须在每次页面加载时检查数据库,如果该帐户已被禁用,则需要注销.您也可以使用HttpModule来实现这一点,这会使事情变得更整洁.

There's no way to abandon a session from 'outside' the session. You would have to check the database on each page load, and if the account has been disabled, then signout. You could achieve this using a HttpModule too, which would make things a bit cleaner.

例如:

public class UserCheckModule : IHttpModule { public void Init(HttpApplication context) { context.PreRequestHandlerExecute += new EventHandler(OnPreRequestHandlerExecute); } public void Dispose() {} private void OnPreRequestHandlerExecute(object sender, EventArgs e) { // Get the user (though the method below is probably incorrect) // The basic idea is to get the user record using a user key // stored in the session (such as the user id). MembershipUser user = Membership.GetUser(Guid.Parse(HttpContext.Current.Session["guid"])); // Ensure user is valid if (!user.IsApproved) { HttpContext.Current.Session.Abandon(); FormsAuthentication.SignOut(); HttpContext.Current.Response.Redirect("~/Login.aspx?AccountDisabled"); } } }

这不是一个完整的示例,使用会话中存储的密钥检索用户的方法将需要调整,但这应该可以帮助您入门.它将在每次页面加载时进行额外的数据库检查,以检查用户帐户是否仍处于活动状态,但是没有其他方法可以检查此信息.

This isn't a complete example, and the method of retrieving the user using a key stored in the session will need to be adapted, but this should get you started. It will involve an extra database check on each page load to check that the user account is still active, but there's no other way of checking this information.

更多推荐

以编程方式注销ASP.NET用户

本文发布于:2023-10-09 18:58:08,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1476507.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:方式   用户   ASP   NET

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!