如何操作母版页中的 ContentPlaceHolder 内容

发布于 2024-11-08 23:14:44 字数 90 浏览 0 评论 0原文

我想从母版页后面的代码编辑 ContentPlaceHolder 的内容,请帮助我,您可以假设具有任何内容占位符的任何母版页。

所有答案都会受到尊重。

I want to edit the contents of ContentPlaceHolder from the code behind of the masterpage, please help me, you can assume any masterpage with any content placeholder.

All answers would be respected.

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

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

发布评论

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

评论(1

未央 2024-11-15 23:14:44

如果内容更改是微不足道且美观的,请考虑客户端操作,例如 jQuery。

否则,您可以在 ContentPlaceHolder 的 Controls 集合上使用 FindControl(),但这会令人担忧且混乱。

一个更简洁的解决方案是利用多态性。调用页面可从 MasterPage 的 Page 属性中获取。

所以:如果你有一个像这样的界面:

public interface IContentInjectable
{
    Literal ExposedLiteral { get; }
}

并且你的页面模板是这样实现的:

<%@ Page Language="C#" MasterPageFile="~/MasterPages/Test.master" AutoEventWireup="true" Inherits="TestPage" Codebehind="TestPage.aspx.cs" %>

<asp:Content ID="Content1" ContentPlaceHolderID="phContent" Runat="Server">

    <asp:Literal ID="litTest" runat="server" />

</asp:Content>

使用代码隐藏如下:

public partial class TestPage : System.Web.UI.Page, IContentInjectable
{
    public Literal ExposedLiteral
    {
        get
        {
            return litTest;
        }
    }
}

你的母版页代码隐藏可能是这样的:

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);

    IContentInjectable icPage = this.Page as IContentInjectable;
    if (icPage != null)
    {
        icPage.ExposedLiteral.Text = "Test Text";
    }
}

If the content changes are trivial and cosmetic, consider client-side manipulation e.g. jQuery.

Otherwise, you could use FindControl() over the Controls collection of the ContentPlaceHolder, but that's fraught and messy.

A neater solution is to take advantage of Polymorphism. The calling page is available from the MasterPage's Page property.

So: if you have an interface like so:

public interface IContentInjectable
{
    Literal ExposedLiteral { get; }
}

And your page template is implemented like so:

<%@ Page Language="C#" MasterPageFile="~/MasterPages/Test.master" AutoEventWireup="true" Inherits="TestPage" Codebehind="TestPage.aspx.cs" %>

<asp:Content ID="Content1" ContentPlaceHolderID="phContent" Runat="Server">

    <asp:Literal ID="litTest" runat="server" />

</asp:Content>

With code-behind like:

public partial class TestPage : System.Web.UI.Page, IContentInjectable
{
    public Literal ExposedLiteral
    {
        get
        {
            return litTest;
        }
    }
}

Your Masterpage code-behind could be like this:

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);

    IContentInjectable icPage = this.Page as IContentInjectable;
    if (icPage != null)
    {
        icPage.ExposedLiteral.Text = "Test Text";
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文