MVC自定义视图规则
生活随笔
收集整理的这篇文章主要介绍了
MVC自定义视图规则
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
自定义规则:
using System.Web.Mvc; using System.Configuration;namespace Research {public class ViewConfig{public static void RegisterView(){string temp = ConfigurationManager.AppSettings["ShopTemplate"];RazorViewEngine r = new RazorViewEngine();r.ViewLocationFormats = new[] { "~/Template/" + temp + "/{1}/{0}.cshtml", "~/Views/{1}/{0}.cshtml" };ViewEngines.Engines.Clear();ViewEngines.Engines.Add(r);}} }注册自定义规则:在Global.asax.cs中加入注册代码
public class MvcApplication : System.Web.HttpApplication{protected void Application_Start(){AreaRegistration.RegisterAllAreas();FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);RouteConfig.RegisterRoutes(RouteTable.Routes);BundleConfig.RegisterBundles(BundleTable.Bundles);//注册自定义视图访问规则 ViewConfig.RegisterView();}}
总结
以上是生活随笔为你收集整理的MVC自定义视图规则的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: 今年阿里双十一CDN要冲历史之最,峰值带
- 下一篇: 每天进步一点之C\C++