现在的位置: 首页 > 综合 > 正文

change the theme in VS2005 or VS2008

2013年05月23日 ⁄ 综合 ⁄ 共 368字 ⁄ 字号 评论关闭
要在PreInit Event前做改动

Another Method, in the application PreRequestHandlerExcute

void Application_PreRequestHandlerExecute(object sender, EventArgs e)
{
    Page page 
= Context.Handler as Page;

    
if (page == null)
        
return;

    
//Get the theme
    
   
    page.PreInit 
+= delegate
   
{
        page.Theme 
= theme; 
        
        
//Update the cookie 
    }
;
}

不过这个方法还要配合其它代码来一起实现才可以

抱歉!评论已关闭.