ASP 会员服务总是创建两个帐户

发布于 2024-09-10 21:43:42 字数 148 浏览 5 评论 0原文

我正在使用 ASP 会员服务来创建和管理用户。我注意到在用户帐户注册时一切正常...直到我调用 Roles.AddUserToRole,突然我在 aspnet_users 表中创建了第二个用户帐户。有人可以解释一下吗?我非常确定每个注册用户在数据库中只应该有一个用户帐户......

I am using the ASP membership services to create and manage users. I notice that on user account registration everything works fine... Until I call Roles.AddUserToRole, and suddenly I get a second user account created in the aspnet_users table. Can someone explain this? I am quite certain that I should only ever have one user account in the database per registered user...

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

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

发布评论

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

评论(2

风吹过旳痕迹 2024-09-17 21:43:42

角色和成员资格是不同的问题,例如,彼此不依赖,因此 aspnet_Users 中的多个记录确实表明您可能需要检查您的配置并确保您的成员资格和 roleManager 元素:

  1. 两者都没有 applicationName 已定义(默认“/”)或
  2. 两者都定义了相同的 applicationName

Roles and membership are separate concerns, e.g. do not depend on one another, so the multiple records in aspnet_Users do indicate that you may want to examine your configuration and ensure that your membership and roleManager elements either:

  1. both have NO applicationName defined (default '/') or
  2. both have the SAME applicationName defined
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文