sharepoint发布页面的标题默认都是“页面 - 标题名称”,前面的标题看着有点不爽,想去掉这两个字。
在布局页中可以看到以下内容:
<SharePointWebControls:UIVersionedContent UIVersion="4" runat="server">
<ContentTemplate>
<SharePointWebControls:ListProperty Property="Title" runat="server"/>
- <SharePointWebControls:FieldValue FieldName="Title" runat="server"/>
</ContentTemplate>
</SharePointWebControls:UIVersionedContent>
<SharePointWebControls:ListProperty Property="Title" runat="server"/>这一句是获取所属列表的名称,因此显示了“页面”。
<SharePointWebControls:FieldValue FieldName="Title" runat="server"/>这一句是获取文件的标题,即显示页面中填写的标题内容。
因此,可以按照自己的需求,定制标题上要显示的内容。