ASP.NET Forms auth - 获取用户数据

发布于 2024-07-12 03:59:07 字数 356 浏览 4 评论 0原文

我在一个非常小的 ASP.NET Web 应用程序(Web 表单)上使用表单身份验证,我想在其中的单独数据库表中存储有关用户的附加信息。

然后将其链接回 aspnet_User 表,我认为链接到的最佳列是 UserId 列。 问题是我不知道如何在用户登录时获取这段数据。这可能吗?

另外,如何获取电子邮件地址?


在有人指出之前,我知道 ProfileProvider,但存储的详细信息需要每年重新提交(这是体育俱乐部的注册申请)以及存储的所有以前的数据。 所以 ProfileProvider 并不真正适用(除非我错了并且它可以用来存储它历史?)。

I'm using forms authentication on a very small ASP.NET web app (Web Forms) in which I want to store additional info about the user in a separate database table.

This is then linked back to the aspnet_User table and I was figuring the best column to link to is the UserId column. Problem is I can't work out how to get this piece of data when the user is logged in. Is it even possible?

Also, how do I get the email address?


Before someone points it out, I am aware of the ProfileProvider but the details stored need to be re-submitted each year (it's a registration application for a sporting club) and all previous data stored. So the ProfileProvider isn't really applicable (unless I'm wrong and it can be used to have it stored historically?).

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

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

发布评论

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

评论(1

疯狂的代价 2024-07-19 03:59:07

这是获取用户 ID 的方法

MembershipUser myObject = Membership.GetUser();
string UserID = myObject.ProviderUserKey.ToString();
string Email = myObject.Email;

here's how you can get the userid

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