首页 > Web开发 > 详细

MVC自定义视图规则

时间:2014-11-13 14:10:46      阅读:310      评论:0      收藏:0      [点我收藏+]

自定义规则:

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自定义视图规则

原文:http://www.cnblogs.com/yuejin/p/4094652.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!