AuthorizeRole="管理员"无法在 mvc3 应用程序中工作?
- 我在 mvc3 应用程序中设置了会员资格提供程序。
- 我将它从本地sql express app_data/aspnetdb.mdf移植到本地服务器2008实例 (目前这对于登录/等工作正常,并且 [Authorize] SomeMethod()
- 我最近在 aspnet_UsersInRoles 关联中添加了 1 个新的 aspnet_roles (“管理员”)和 1 个新条目。w/我的用户名。
角色表:
ApplicationId RoleId RoleName LoweredRoleName 描述 3F96CA96-CCB3-4780-8038-AF3CCE0BD4F2 9B5B798D-E56E-4144-A12C-7C8945FCB413 管理员管理员管理员
UsersInRoles:
用户 ID 角色 ID 58974159-E60E-4185-AD00-F8024C7C5974 9B5B798D-E56E-4144-A12C-7C8945FCB413
问题1:为什么以下代码不允许我进入此控制器操作?
[Authorize]
[Authorize(Roles = "Admin")] // !!! This is keeping me out...commented out I can get in but I'm set as "Admin" and have tried lower case "admin" as well.
public ActionResult SomeMethod()
{}
Q1a:是否需要在 Web 配置中设置另一个角色提供程序连接字符串才能使其正常工作?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您能否发布您的 web.config 中有关成员资格和角色提供者的部分内容。这听起来像是您的应用程序名称设置不正确。
编辑
您的应用程序名称未设置。它需要设置为某些内容,并且必须与数据库表中的应用程序名称匹配:aspnet_Applications
如果您的 Web 配置有 applicationName="TestApp" />那么您的数据库表还需要在 aspnet_Applications 表中有 TestApp
Can you please post parts of your web.config regarding membership and role providers. This sounds like your application name isn't set properly.
Edit
Your application name isn't set. It needs to be set to something and it must match the application name in your database table: aspnet_Applications
If you web config has applicationName="TestApp" /> then your database table also needs to have TestApp in the aspnet_Applications table
确保您的 ApplicationId 与您可能使用不同的 applicationId 相同,请检查此处 了解更多信息
Make sure that your ApplicationId is the same you are probably using a different applicationId, check here for more info
请尝试使用以下代码来查明您的问题:
如果出现异常,则意味着您的会员提供商存在问题,或者您不处于
admin
角色,或者您的 applicationid 配置为不同下面建议。这些是一些可能性。
Try the below code in order to pin point your problem :
If you get an exception, it means that there is problem with your Membership Provider or you're not in
admin
role or your applicationid was configured different as suggested below.These are some of the possibilities.