ASP 会员服务总是创建两个帐户
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
角色和成员资格是不同的问题,例如,彼此不依赖,因此 aspnet_Users 中的多个记录确实表明您可能需要检查您的配置并确保您的成员资格和 roleManager 元素:
applicationName 已定义(默认“/”)或
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:
applicationName
defined (default '/') orapplicationName
definedhttp://weblogs.asp.net/gurusarkar/archive/2010/01/09/asp-net-mebership-creates-two-users-in-aspnet-users-table.aspx
http://weblogs.asp.net/gurusarkar/archive/2010/01/09/asp-net-mebership-creates-two-users-in-aspnet-users-table.aspx