在 asp.net/c# 中提取用户帐户信息

发布于 2024-08-06 10:13:20 字数 234 浏览 4 评论 0原文

我对 ASP.NET 和 C# 比较陌生,但在过去的几个月里学到了很多东西。我的问题可能有一个相对简单的解决方案,但我却忽略了它。

我目前有一个通过标准 asp.net 成员资格表进行用户注册和身份验证的站点设置。我正在尝试创建一个“我的帐户”页面,用户在登录时可以访问该页面,该页面将显示从其他表中提取的有关其帐户的信息。

如何将登录的“UserName”值指定为我需要查询的账户信息表的输入参数?

谢谢

I'm relatively new to asp.net and c#, but have learned a ton in the past few months. My question probably has a relatively simple solution, but it's escaping me.

I currently have a site setup with user registration and authentication through the standard asp.net membership tables. I'm trying to create a "My Account" page that users can go to when logged in that will display information about their accounts pulled from other tables.

How do I indicate the logged in "UserName" value as the input parameter for the account information tables that I need to query?

Thanks

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

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

发布评论

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

评论(4

夏见 2024-08-13 10:13:20

如果您使用的是 .NET 会员资格提供程序,您可以通过执行以下操作来获取有关当前登录用户的信息:

MembershipUser user = Membership.GetUser();
Guid userID = (Guid)user.ProviderUserKey;
string username = user.UserName;

编辑:我想如果您只需要的话,使用 Membership.GetUser() 就太过分了是用户名。
如果 UserName 是您唯一需要的,请按照其他人的建议使用 HttpContext.Current.User.Identity.Name

If you're using .NET Membership Provider, you can get info about currently logged in user by doing the following:

MembershipUser user = Membership.GetUser();
Guid userID = (Guid)user.ProviderUserKey;
string username = user.UserName;

EDIT: I guess it is overkill to use Membership.GetUser() if only thing you need is UserName.
Use HttpContext.Current.User.Identity.Name as others suggests if UserName is the only thing you need.

乙白 2024-08-13 10:13:20

尝试 User.identity.name

httpcontext.current.user.identity.name

try User.identity.name

httpcontext.current.user.identity.name
你没皮卡萌 2024-08-13 10:13:20

HttpContext.Current.User.Identity.Name

HttpContext.Current.User.Identity.Name

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