gpt4 book ai didi

asp.net-mvc - 如何在asp.net mvc4应用程序中向管理员显示注册用户列表

转载 作者:行者123 更新时间:2023-12-02 09:13:45 24 4
gpt4 key购买 nike

我使用razor引擎创建了asp.net mvc4应用程序,我对这项技术很陌生,并试图找到一种方法在管理员登录后向管理员显示注册用户列表。成员(member)资格正在使用system.web.providers 。谁能告诉-首先如何使用 Entity Framework 为用户、管理员创建单独的角色其次如何获取并向管理员显示具有不同角色的所有注册用户的列表。

提前致谢。问候

最佳答案

[Authorize(Roles = "Admin")]
public ActionResult Index()
{
using (var ctx = new UsersContext())
{
return View(ctx.UserProfiles.ToList());
}
}

在 View 中:

@using MvcApplication1.Models
@model IEnumerable<UserProfile>
@{
Layout = null;
}

<!DOCTYPE html>

<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<h2>Users list</h2>
<table>
<thead>
<tr>
<th>id</th>
<th>name</th>
</tr>
</thead>
<tbody>
@foreach (var user in Model)
{
<tr>
<td>@user.UserId</td>
<td>@user.UserName</td>
</tr>
}
</tbody>
</table>
</body>
</html>

当然,为了能够访问 /users/index Controller 操作,您首先需要拥有用户和角色。只有具有管理员角色的用户才能调用它。

这是一个tutorial这解释了如何使用迁移来为数据库添加一些帐户。

示例迁移配置如下所示:

internal sealed class Configuration : DbMigrationsConfiguration<UsersContext>
{
public Configuration()
{
AutomaticMigrationsEnabled = true;
}

protected override void Seed(UsersContext context)
{
WebSecurity.InitializeDatabaseConnection(
"DefaultConnection",
"UserProfile",
"UserId",
"UserName",
autoCreateTables: true
);

if (!Roles.RoleExists("Admin"))
{
Roles.CreateRole("Admin");
}

if (!WebSecurity.UserExists("john"))
{
WebSecurity.CreateUserAndAccount("john", "secret");
}

if (!Roles.GetRolesForUser("john").Contains("Admin"))
{
Roles.AddUsersToRoles(new[] { "john" }, new[] { "Admin" });
}
}
}

关于asp.net-mvc - 如何在asp.net mvc4应用程序中向管理员显示注册用户列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12706286/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com