以编程方式设置 SharePoint 页面的标题?

发布于 2024-09-13 16:46:44 字数 177 浏览 8 评论 0原文

我需要在代码中设置SharePoint页面的页面标题(Page Title)。我已经测试过

this.Page.Title = "My Page Title";

但这不会在页面加载时改变标题。任何人都可以提供有关如何执行此操作的任何建议吗?

谢谢,魔法安迪

I need to set the page title (Page Title) of a SharePoint page in code. I have already tested

this.Page.Title = "My Page Title";

But this does not change the title when the page loads. Can anyone offer any advise on how to do this?

Thanks, MagicAndi

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

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

发布评论

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

评论(2

呆头 2024-09-20 16:46:45

Michael Becker 的这篇博客文章给出了一种修改方法使用以下代码的 SharePoint 页面标题:

ContentPlaceHolder contentPlaceHolder = (ContentPlaceHolder) Page.Master.FindControl("PlaceHolderPageTitle");
contentPlaceHolder.Controls.Clear();
LiteralControl literalControl = new LiteralControl();
literalControl.Text = "My Page Title";
contentPlaceHolder.Controls.Add(literalControl); 

This blog post by Michael Becker gives a method of modifying the SharePoint Page title using the code below:

ContentPlaceHolder contentPlaceHolder = (ContentPlaceHolder) Page.Master.FindControl("PlaceHolderPageTitle");
contentPlaceHolder.Controls.Clear();
LiteralControl literalControl = new LiteralControl();
literalControl.Text = "My Page Title";
contentPlaceHolder.Controls.Add(literalControl); 
春夜浅 2024-09-20 16:46:45

例如,如果您想从页面上的 Web 部件更改页面标题,您可以使用以下命令:

private void ChangeTitle(string newTitle)
{
    SPListItem item = SPContext.Current.ListItem;

    if (item != null)
    {
        item[SPBuiltInFieldId.Title] = newTitle;
        item.SystemUpdate(false);
    }
}

这仅适用于页面库中的页面,因为站点根目录中的 default.aspx 页面没有关联的列表项。另外,不要忘记更改标题后刷新页面。

SystemUpdate 确保“修改/修改者”信息不会更新,并且版本号不会增加。如果您希望更新此信息,请将其替换为 item.Update();

If you want to change the page title from a webpart on the page for example, you could use this:

private void ChangeTitle(string newTitle)
{
    SPListItem item = SPContext.Current.ListItem;

    if (item != null)
    {
        item[SPBuiltInFieldId.Title] = newTitle;
        item.SystemUpdate(false);
    }
}

This will only work for a page in the pages library, because the default.aspx page in the root of your site doesn't have an associated listitem. Also don't forget to refresh your page after changing the title.

The SystemUpdate makes sure that 'modified/modified by' information is not updated and that the version number doesn't increase. If you want this information updated, replace it by item.Update();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文