使另一个用户会话变量无效

发布于 2024-07-16 07:58:49 字数 186 浏览 2 评论 0原文

我正在考虑这样一种情况:管理员对系统中恰好登录的另一个用户进行了一些更改。是否有任何编程方法可以使特定用户会话变量无效并强制重新填充它们?

用例

  1. 管理员编辑 Bob 首选项
  2. 业务逻辑清除存储在会话中的 Bob 首选项
  3. 保存到数据库的首选项

谢谢

I'm thinking of a situation where an administrator makes some changes to another user in the system that happens to be logged in. Is there any programatic way to invalidate that specific users session variables and force them to be repopulated?

Use Case

  1. Admin Edits Bobs preferences
  2. Business Logic clears bobs preferences stored in session
  3. Preferences saved to database

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小鸟爱天空丶 2024-07-23 07:58:49

一种方法是清除其他用户的会话 cookie。

另一种方法是创建您自己的 SessionIDManager(源自内置)。 然后,当使用其他用户的会话 ID 调用 Validate 方法时,您可以返回 false。

One way is to clear the other user's session cookie.

The other way is to create your own SessionIDManager (derive from the built-in one). Then when the Validate method is called with the other user's session ID, you can return false.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文