• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NET MVC 多套皮肤解决方案

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

原理自己写了一个ThemeController继承于Controller,先看我的文件结构:

ThemeController的具体实现:

 

  public class ThemeController : Controller
    {
        
private static string[] sPathTemplate = new string[]{ 
            
"/Themes/{0}/{1}/{2}.aspx",
            
"/Themes/{0}/Shared/{1}.Master"};

        private static ThemeController m_ThemeController = new ThemeController();

        
public static ViewResult View(string sTheme, string sController, string sView, string sMaster, object oModel)
        {
            
string sViewPath = string.Format(sPathTemplate[0], sTheme, sController, sView);
            
string sMasterPath = string.Format(sPathTemplate[1], sTheme, sMaster);

            
return m_ThemeController.View(sViewPath, sMasterPath, oModel);
        }

        
public static ViewResult View(string sTheme, string sController, string sView, object oModel)
        { 
            
return View(sTheme, sController, sView,"Site" , oModel);
        }

        
public static ViewResult View(string sTheme, string sController, string sView)
        {
            
string sViewPath = string.Format(sPathTemplate[0], sTheme, sController, sView);
            
string sMasterPath = string.Format(sPathTemplate[1], sTheme, "Site");

            
return m_ThemeController.View(sViewPath, sMasterPath);
        }

        
//protected override ViewResult View(string viewName, string masterName, object model)
        
//{
        
//    if (viewName == null && model != null)
        
//        viewName = model.GetType().Name.ToLower().Replace("model", "view");
            
        
//    return base.View(viewName, masterName, model);
        
//}
    }

 

调用方法:

[HandleError]
public class HomeController : ThemeController
{
        
public ActionResult Index()
        {
            
string m_sTheme = "default"; //默认的皮肤

            
if (Request.QueryString["Theme"!= null)
            {
                m_sTheme 
= Request.QueryString["Theme"];
            }

            ViewData[
"Message"= "Welcome to ASP.NET MVC!";

            
return View(m_sTheme, "Home""Index");
        }

        
public ActionResult About()
        {
            
return View();
        }
}

 

显示效果:

 

自己觉得这是一个比较粗浅的解决方案,算是抛砖引玉吧,敬请多多拍砖!

 

附上源码!

 

更好的解决方案:重写视图引擎 附上源代码

 

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Asp.net缩略图代码发布时间:2022-07-10
下一篇:
asp.netWebApiWebApiConfig.csWebAPI配置和服务发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap