zoukankan      html  css  js  c++  java
  • Manage your ViewEngine(Wirte by myself)

    I think anybody would have the same problem as my that have a  little big mvc project  and of couse we have alot views to share ,its necessary for reuse, but sadlly our MVC3 razor view only provide one share dir of “Share”.

    If you type viewengin in ZZK , you will c most results are tell you to create a new view engine, its too complex to only add a share directory .

    So my solution is to modify the VE, firstly you should know ,its init two default viewengine :

        static ViewEngines()
    
        {
    
            ViewEngineCollection engines = new ViewEngineCollection();
    
            engines.Add(new WebFormViewEngine());
    
            engines.Add(new RazorViewEngine());
    
            _engines = engines;
    
        }
    

    My code(because no aspx or other webforms need in my website so no webform VE needed!)

                ViewEngines.Engines.Clear();
    
                var rve = new RazorViewEngine();
    
                var newLoactions = rve.PartialViewLocationFormats.ToList();
    
                    newLoactions.AddRange(new List<string>
    
                                  {
    
                                      //"~/Views/{controller:1}/{0}.cshtml"
    
                                      "~/Views/XXX/{0}.cshtml"
    
                                  });
    
                rve.PartialViewLocationFormats = newLoactions.ToArray();
    
                ViewEngines.Engines.Add(rve);

    Hope can help you too!

    作者:KKcat
        
    个人博客:http://jinzhao.me/
        
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    4.函数
    3.文件操作及编码解码补充
    2.列表字符串字典元组集合
    1.杂项三元运算及字符编码
    python-数据类型补充及文件处理操作
    python-day02数据类型-字符串和列表的操作
    python-day01
    DOM
    javascript基本
    CSS几个属性
  • 原文地址:https://www.cnblogs.com/jinzhao/p/2092134.html
Copyright © 2011-2022 走看看