在 asp.net MVC2 中管理用户配置文件

发布于 2024-10-06 03:23:49 字数 377 浏览 5 评论 0原文

我正在尝试使用 .net MVC2 将用户管理添加到 Web 应用程序,类似于 ProfileProvider:检索所有配置文件的列表

我想在“列出所有用户”页面上显示个人资料信息(名字、姓氏),但我不知道如何获取所有个人资料。 ProfileManager.GetAllProfiles() 返回 ProfileInfo 对象的集合,而不是实际的 Profile 对象。

虽然 ProfileInfo 类确实使我能够访问一些有用的信息,但我实际上无法获取该特定配置文件的任何属性。

有没有办法获取系统中的所有配置文件,以便我可以在管理页面上列出它们?

I'm trying to add user management to a web app using .net MVC2, similarly to ProfileProvider: retrieve list of all profiles.

I'd like to display profile information (first name, last name) on the "list all users" page, but I can't figure out how to get all profiles. ProfileManager.GetAllProfiles() returns a collection of ProfileInfo objects rather than actual Profile objects.

While the ProfileInfo class does give me access to some useful info, I can't actually get any properties of that particular profile.

Is there a way to get all Profiles in the system so that I can list them on an admin page?

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

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

发布评论

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

评论(1

浅语花开 2024-10-13 03:23:49

您可以尝试使用 MembershipProvider.GetAllUsers 获取有关每个用户的更广泛的信息。这将为您提供 MembershipUser 的集合。

You could try using the MembershipProvider.GetAllUsers to get more extensive information about each user. This will give you a collection of MembershipUser.

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