ASP.NET MVC企业级程序设计 (EF+MVP实现显示数据)

效果图

实现过程

1创建数据库

2创建项目文件

3创建控制器,右键添加,控制器

注意这里要写Home
创建成功
数据模型创建过程之前作品有具体过程

4创建视图,右键添加视图

5HomeController.cs代码

cpp 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using WebApplication3.Models;
namespace WebApplication3.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            PersonDBEntities db=new PersonDBEntities();
            ViewData["users"] = db.Users.ToList();
            return View();
        }

        public ActionResult About()
        {
            ViewBag.Message = "Your application description page.";

            return View();
        }

        public ActionResult Contact()
        {
            ViewBag.Message = "Your contact page.";

            return View();
        }
    }
}

6Index.cshtml代码

html 复制代码
@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
</head>
<body>
    <div> 
        <table border="1">
            <tr>
                <th>ID</th>
                <th>姓名</th>
                <th>年龄</th>
            </tr>
            @{ 
                foreach (var item in ViewData["users"] as List<WebApplication3.Models.Users>)
                {
                        <tr>
                            <td>@item.id</td>
                            <td>@item.name</td>
                            <td>@item.age</td>
                        </tr>
                }

            }

        </table>
    </div>
</body>
</html>
相关推荐
清晓粼溪2 分钟前
SpringCloud-04-Circuit Breaker断路器
后端·spring·spring cloud
woniu_maggie3 分钟前
SAP导入WPS编辑的Excel文件报错处理
后端
回家路上绕了弯15 分钟前
Spring Retry框架实战指南:优雅处理分布式系统中的瞬时故障
分布式·后端
yuuki23323315 分钟前
【C++】vector底层实现全解析
c++·后端·算法
czlczl2002092516 分钟前
基于SpringBoot与RBAC的功能权限设计
spring boot·后端·spring
华仔啊18 分钟前
如何查看 SpringBoot 当前线程数?3 种方法亲测有效
java·后端
weixin_4250230018 分钟前
Spring Boot 生成短链接
java·spring boot·后端
shark_chili19 分钟前
浅谈CPU流水线的艺术
后端
秋饼25 分钟前
【spring-framework 本地下载部署,以及环境搭建】
java·后端·spring