搜索 ASP.Net 配置文件

发布于 2024-07-12 02:05:25 字数 246 浏览 8 评论 0原文

我正在寻找一种使用标准 ASP.Net 配置文件提供程序来搜索每个用户配置文件的方法。 这可能吗,还是我应该创建一个新的配置文件提供程序?

场景如下:

  • 用户注册
  • 用户设置他们的个人资料(最喜欢的颜色、最喜欢的书、国家等)
  • 然后用户可以浏览其他用户,例如,最喜欢的颜色为“绿色”

我想使用这个所有这些都通过会员/个人资料提供商进行,而无需直接针对数据库进行编码。

I am looking for a way to search through every users profile using the standard ASP.Net Profile Provider. Is this possible, or should I create a new Profile Provider?

Here is the scenario:

  • User registers
  • User sets up their profile (favorite color, favorite book, country, etc)
  • User is then able to browse other users who, for instance, have a favorite color of "Green"

I would like to use this all through the membership/profile providers without having to code against the database directly.

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

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

发布评论

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

评论(2

咿呀咿呀哟 2024-07-19 02:05:25

您想要的功能包含在 Profile API 中。

您可以使用以下方式获取单个用户的个人资料:

HttpProfile profile = Profile.GetProfile("Fred");

您可以使用以下方式获取所有个人资料:

var allUsers = Membership.GetAllUsers();
foreach (MembershipUser user in allUsers)
{
    var prof = ProfileBase.Create(user.UserName, true);
}

The functionality you want is included in the Profile API.

You can get an individual users profile using:

HttpProfile profile = Profile.GetProfile("Fred");

You can get all the profiles using:

var allUsers = Membership.GetAllUsers();
foreach (MembershipUser user in allUsers)
{
    var prof = ProfileBase.Create(user.UserName, true);
}
蓝眸 2024-07-19 02:05:25

我相信标准提供者只适用于当前用户。 您需要一个自定义配置文件提供程序来检索其他用户的信息。 幸运的是,它确实是

I believe the standard provider will only work for the current user. You would need a custom profile provider to retrieve the information for other users. Fortunately it is really easy to do. That link has an example of a custom provider that allows you to retrieve the profiles of other users. If you use his example, be sure to note the person's comment about removing the profile section from your web.config. I had to do that to make mine work correctly.

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