.Net Core 2.0 学习新建Core MVC 项目
2021-05-16 13:30
标签:image sem conf 一个 index 配置 service 方法 tar 一、新建空的Core web项目 二、在Startup文件中添加如下配置 1. 在ConfigureServices 方法中添加 services.AddMvc();MVC服务 2. app.UseMvc(routes => 三、添加Controllers文件夹 1. 添加一个HomeControler.cs类 2. 添加代码 3. 添加视图
.Net Core 2.0 学习新建Core MVC 项目 标签:image sem conf 一个 index 配置 service 方法 tar 原文地址:http://www.cnblogs.com/haosit/p/7747116.html
{
routes.MapRoute(name: "default", template: "{Controller=Home}/{action=Index}/{id?}");
});在Configure方法添加路由
上一篇:第一章 jQuery基础
文章标题:.Net Core 2.0 学习新建Core MVC 项目
文章链接:http://soscw.com/index.php/essay/86275.html