可以为内容占位符设置背景图像吗?目前,我可以为整个页面显示背景图片,但内容占位符挡住了大部分图片,所以我想为内容占位符设置背景图片(大部分内容都在持有人中) .
这是我在背景中显示图像的代码,但我不知道如何将其放置在 ASP.NET 的内容占位符中:
protected void dropListActivity_SelectedIndexChanged(object sender, EventArgs e)
{
if (dropListActivity.SelectedItem.Text == "GrassHopper and Ants")
{
PageBody.Attributes.Add("style", "background:url(Images/background/ant-and-grasshopper.jpg) no-repeat;");
Session["Background"] = "background:url(Images/background/ant-and-grasshopper.jpg);";
}
if (dropListActivity.SelectedItem.Text == "Food Fit For A King")
{
PageBody.Attributes.Add("style", "background:url(Images/background/King.jpg) no-repeat;");
Session["Background"] = "background:url(Images/background/King.jpg);";
}
}
在我的 html 方面,我只需添加一个 body id = "PageBody" 就可以了。但我如何在内容占位符中做到这一点?我是编程以及 CSS 或 Html 的新手。