在 vb.net 中加载时更改不同页面的母版页主体颜色

发布于 2024-08-26 01:07:43 字数 241 浏览 3 评论 0原文

我有大约 10 个 aspx 页面(junior_class_students1.aspx-...10.aspx)。它们的后面都有相同的母版页(class_students.master)。每次加载页面时,我都希望将母版页背景颜色更改为我可以为每页指定的颜色。 所以...students1.aspx 然后.master ...students2.aspx 然后 .master ...students3.aspx 那么.master

如何实现呢?

I have like 10 aspx pages (junior_class_students1.aspx-...10.aspx). They all have the same master page in the back (class_students.master). Everytime i load a page i want the master page background-color to change, to the one that i can specify per page.
so ...students1.aspx then .master
...students2.aspx then .master
...students3.aspx then .master

how can this be achieved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

oО清风挽发oО 2024-09-02 01:07:43

请记住,内容持有者可以移动到页面中的任何位置。可以做这样的事情:

<div style="background-color:<asp:ContentPlaceHolder id="divColor" runat="server" />"></div>

然后在你的页面中有这样的:

<asp:Content ID="divColorContent" ContentPlaceHolderID="divColor" Runat="Server">green</asp:Content>

Keep in mind that content holders can go anywhere in the page. It's possible to do something like this:

<div style="background-color:<asp:ContentPlaceHolder id="divColor" runat="server" />"></div>

And then in your page have this:

<asp:Content ID="divColorContent" ContentPlaceHolderID="divColor" Runat="Server">green</asp:Content>
弥繁 2024-09-02 01:07:43

CSS 类。

您可以在 body 和 contentplaceholder 上放置一个填充 body 的 div。

母版页

<body>
<asp:ContentPlaceHolder id="cph" runat="server" />
</body>

该 div 每页可以有一个唯一的 ID。

Cntent 页面

<asp:Content id="cnt" ContentPlaceHolderID="cph">
    <div id="Page1" class="container">
      <!--Page Content-->
    </div>
</asp:Content>

那么 CSS 可能是这样的:

div.container
{
    width: 100%;
    height: 100%;
}
div#Page1
{
    background-color: green;
}
div#Page2
{
    background-color: blue;
}
...

CSS classes.

You could place a div that fills the body inside on body and contentplaceholder.

Master Page

<body>
<asp:ContentPlaceHolder id="cph" runat="server" />
</body>

That div could have a uniuqe ID per page.

Cntent page

<asp:Content id="cnt" ContentPlaceHolderID="cph">
    <div id="Page1" class="container">
      <!--Page Content-->
    </div>
</asp:Content>

Then CSS could be something like:

div.container
{
    width: 100%;
    height: 100%;
}
div#Page1
{
    background-color: green;
}
div#Page2
{
    background-color: blue;
}
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文