如何获取会员中的userid?

发布于 2024-08-23 14:54:14 字数 235 浏览 3 评论 0原文

我知道如何获取当前用户的用户 ID

 MembershipUser currentUser = Membership.GetUser();
 Guid currentUserId = (Guid)currentUser.ProviderUserKey;

,但对于我的应用程序,我还需要获取未登录用户的用户 ID。 因为我需要将用户 ID 分配给我使用的不同表。

先感谢您

i know how to get userid for a current user

 MembershipUser currentUser = Membership.GetUser();
 Guid currentUserId = (Guid)currentUser.ProviderUserKey;

But for my application i need to get userid of user who are not loginned in also.
Because i need to assign the userid to different table which i m using.

Thank you in Advance

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

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

发布评论

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

评论(1

拔了角的鹿 2024-08-30 14:54:14

使用 Membership.GetUser(username, userIsOnline) 方法,传递 false 作为 userIsOnline 参数。

Use the Membership.GetUser(username, userIsOnline) method, passing false as the userIsOnline parameter.

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