本文介绍了我可以在Asp.Net中更改子页面加载上的母版页背景图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有背景图片的母版页。现在我想从菜单中加载来改变任何孩子的背景图像。所以它看起来像专业网站。



请求帮助我。你可以通过[email protected]与我联系

I have a master page with background image. Now I want to change background image on any child from load from menu. So It look like professional site.

Pleaes help me on this. you can contact me at [email protected]

推荐答案


this.master.changeBG();





In后面的母版页代码的changeBG()写了背景更改代码,如:



In the changeBG() of master page code behind write the background changing code like:

public void changeBG()
{
  bodyTag.Atributes.Add("background-image:", "url('gifs/page-body-background.gif'");
  //here bodyTag is the id of the body of the master page with runat="server"
}





希望有帮助:)



Hope it helps :)



这篇关于我可以在Asp.Net中更改子页面加载上的母版页背景图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 12:44