标签:net 视图 空白 手动 exception 一个 cep evel hosting
一 创建一个空白Mvcpublic void ConfigureServices(IServiceCollection ServiceCollection)
{
ServiceCollection.AddMvc();
}
四 注册MVC中间件,并配置路由规则
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMvc((RouteBuilder) => { RouteBuilder.MapRoute("default", "{Controller}/{Action}/{Parameter}", new { @Controller = "Home", @Action = "Index", @Parameter = String.Empty }); });
}
五 创建控制器Home与Index视图
六 运行项目 ok
标签:net 视图 空白 手动 exception 一个 cep evel hosting
原文地址:https://blog.51cto.com/12268222/2424336