Изменение Sharepoint Webpartzone не работает - PullRequest
0 голосов
/ 01 марта 2012

Я создал пользовательскую страницу веб-части. Когда я добавляю веб-части на страницу, все работает нормально. Но если я изменю зону веб-части, она не будет работать. После сохранения зона веб-части не изменяется.

Моя страница aspx:

<%@ Page masterpagefile="~masterurl/default.master" language="C#"       Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral,PublicKeyToken=71e9bce111e9429c" meta:webpartpageexpansion="full" meta:progid="SharePoint.WebPartPage.Document" %>
<%@ Register Tagprefix="SharePointWebControls" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="PublishingWebControls" Namespace="Microsoft.SharePoint.Publishing.WebControls" Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="PublishingNavigation" Namespace="Microsoft.SharePoint.Publishing.Navigation" Assembly="Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>


<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
 <WebPartPages:SPProxyWebPartManager runat="server" id="spwebpartmanager" />
                <table width="100%" cellpadding="0" cellspacing="0">
                    <tr>
                        <td  valign="top" width="50%"><WebPartPages:WebPartZone runat="server"  ID="MainLeft" Title="loc:MainLeft" />
                            &#160;</td>
                        <td  valign="top" width="50%"><WebPartPages:WebPartZone runat="server"  ID="MainRight" Title="loc:MainRight" />
                         &#160;</td>      
          </tr>
         </table>
</asp:Content>    

1 Ответ

0 голосов
/ 01 марта 2012

попробуй

<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
                <table width="100%" cellpadding="0" cellspacing="0">
                    <tr>
    <td  valign="top" width="50%">
<WebPartPages:WebPartZone runat="server" ID="MainLeft" Title="loc:MainLeft"><ZoneTemplate></ZoneTemplate></WebPartPages:WebPartZone>
</td>
    <td  valign="top" width="50%">
<WebPartPages:WebPartZone runat="server" ID="MainRight" Title="loc:MainRight"><ZoneTemplate></ZoneTemplate></WebPartPages:WebPartZone>
</td>
</tr>
         </table>
</asp:Content>  
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...