您也可以將您的頁面佈局作爲單個功能部署,而不是創建整個網站定義。這樣,您可以將頁面佈局部署到任何SharePoint發佈網站。如果您使用VS 2010,請從SharePoint模塊項目開始。將您的布局aspx文件添加到項目中。修改elements.xml文件以類似於此:
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="Page Layouts" Url="_catalogs/masterpage" RootWebOnly="True">
<File Path="Page Layouts\Layout1.aspx" Url="Layout1.aspx" Type="GhostableInLibrary" IgnoreIfAlreadyExists="True">
<Property Name="Title" Value="My Layout 1" />
<Property Name="ContentType" Value="$Resources:cmscore,contenttype_pagelayout_name;" />
</File>
</Module>
</Elements>
這將部署您的佈局並使其可用於新的發佈頁面。現在,爲了讓webpart在新頁面中實例化,可以使用webpart定義修改<File>
元素。例如,我可以定義一個內容編輯器web部件將在1區新頁面創建這樣的:
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="Page Layouts" Url="_catalogs/masterpage" RootWebOnly="True">
<File Path="Page Layouts\Layout1.aspx" Url="Layout1.aspx" Type="GhostableInLibrary" IgnoreIfAlreadyExists="True">
<Property Name="Title" Value="My Layout 1" />
<Property Name="ContentType" Value="$Resources:cmscore,contenttype_pagelayout_name;" />
<AllUsersWebPart WebPartZoneID="Zone1" WebPartOrder="1">
<![CDATA[
<WebPart xmlns="http://schemas.microsoft.com/WebPart/v2">
<Assembly>Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c</Assembly>
<TypeName>Microsoft.SharePoint.WebPartPages.ContentEditorWebPart</TypeName>
<Title>Content Editor</Title>
<FrameType>Default</FrameType>
<FrameState>Normal</FrameState>
<Description></Description>
<Height />
<Width />
<AllowRemove>true</AllowRemove>
<AllowZoneChange>true</AllowZoneChange>
<AllowMinimize>true</AllowMinimize>
<AllowConnect>true</AllowConnect>
<AllowEdit>true</AllowEdit>
<AllowHide>true</AllowHide>
<IsVisible>true</IsVisible>
<DetailLink />
<HelpLink />
<HelpMode>Modeless</HelpMode>
<Dir>Default</Dir>
<PartImageSmall />
<MissingAssembly>Cannot import this Web Part.</MissingAssembly>
<PartImageLarge>/_layouts/images/homepage.gif</PartImageLarge>
<IsIncludedFilter />
<ExportControlledProperties>true</ExportControlledProperties>
<ContentLink xmlns="http://schemas.microsoft.com/WebPart/v2/ContentEditor" />
<Content xmlns="http://schemas.microsoft.com/WebPart/v2/ContentEditor">
</Content>
<PartStorage xmlns="http://schemas.microsoft.com/WebPart/v2/ContentEditor" />
</WebPart>
]]>
</AllUsersWebPart>
</File>
</Module>
</Elements>
這應該是比創造一個全新的網站定義更加實用。希望這可以幫助。
請您指點我一個示例嗎?我不太喜歡。另外,我有5種不同的頁面佈局,它們會有不同的應該可編輯的Web部件組合。 – ScottE 2010-12-13 12:15:47
http://msdn.microsoft.com/en-us/vcsharp/ff623012.aspx視頻鏈接 – 2010-12-13 13:03:25
謝謝,但這對我真的很有幫助。用戶如何移除該Web部件或更改其屬性? – ScottE 2010-12-13 13:39:04