以编程方式设置 SharePoint 页面的标题?
我需要在代码中设置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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Michael Becker 的这篇博客文章给出了一种修改方法使用以下代码的 SharePoint 页面标题:
This blog post by Michael Becker gives a method of modifying the SharePoint Page title using the code below:
例如,如果您想从页面上的 Web 部件更改页面标题,您可以使用以下命令:
这仅适用于页面库中的页面,因为站点根目录中的 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:
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();