1、BundleConfig.cs (打包器,打包专用的配置文件)
2、FilterConfig.cs(过滤器配置)
书写过滤规则
3、RouteConfig.cs (路由配置)
controller = "Home", action = "Index",配置为默认打开【views】中【home】文件夹中的【index.cshtml】首页文件.
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Routing; namespace WebApplication1 { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); } } }
4.WebApiConfig.cs(用于任何Web API相关配置,包括Web-API特定的路由,Web API服务和其他Web API设置。)
1、shared(共享模板文件夹)
2、_Layout.cshtml(模板文件)
Views:放视图的文件夹
Global.asax:全局应用程序
RouteConfig:路由的配置