Страница Sharepoint 2007 без главной страницы - PullRequest
1 голос
/ 26 ноября 2010

Я хотел бы знать, как создать страницу в sharepoint 2007, которая не имеет главной страницы.ТКС!

Ответы [ 2 ]

3 голосов
/ 26 сентября 2011

Пожалуйста, создайте макет страницы, который не наследует главную страницу, а затем создайте страницу из этого макета страницы. Это применимо только для MOSS 2007 с включенной функцией публикации.

Пример кода страницы приведен ниже:

<%@ Page language="C#" meta:progid="SharePoint.WebPartPage.Document" meta:webpartpageexpansion="full" inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="SharePointWebControls" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="PublishingWebControls" Namespace="Microsoft.SharePoint.Publishing.WebControls" Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="PublishingNavigation" Namespace="Microsoft.SharePoint.Publishing.Navigation" Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="SPSWC" Namespace="Microsoft.SharePoint.Portal.WebControls" Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="PublishingWebControls" Namespace="Microsoft.SharePoint.Publishing.WebControls" Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register Tagprefix="PublishingNavigation" Namespace="Microsoft.SharePoint.Publishing.Navigation" Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="wssuc" TagName="Welcome" src="~/_controltemplates/Welcome.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="DesignModeConsole" src="~/_controltemplates/DesignModeConsole.ascx" %>
<%@ Register TagPrefix="PublishingVariations" TagName="VariationsLabelMenu" src="~/_controltemplates/VariationsLabelMenu.ascx" %>
<%@ Register Tagprefix="PublishingConsole" TagName="Console" src="~/_controltemplates/PublishingConsole.ascx" %>
<%@ Register TagPrefix="PublishingSiteAction" TagName="SiteActionMenu" src="~/_controltemplates/PublishingActionMenu.ascx" %>

<head>
<meta name="ProgId" content="SharePoint.WebPartPage.Document">
<meta name="WebPartPageExpansion" content="full">

<link rel="stylesheet" type="text/css" href="/_layouts/1033/styles/core.css"/>
<SharePoint:ScriptLink name="init.js" runat="server"/>

</head>

<form id="form1" runat="server">
<div style="float=right; height=10px;">
<!-- Site Actions-->
<PublishingSiteAction:SiteActionMenu runat="server"/>
</div>
<div>
<!-- Page Editing Toolbar -->
<wssuc:DesignModeConsole id="IdDesignModeConsole" runat="server"/>
<PublishingConsole:Console runat="server"/>
</div>
<div>
    <WebPartPages:SPWebPartManager runat="server" id="WebPartManager">
    </WebPartPages:SPWebPartManager>
    <WebPartPages:WebPartZone id="g_6CCC1E01CED54C21AB5D59878B886105" runat="server" title="Zone 1">
    </WebPartPages:WebPartZone>
</div>
</form>
1 голос
/ 30 ноября 2010

Откройте сайт в SPD, щелкните правой кнопкой мыши корень на панели «Список папок» и выберите «Новый», а затем «ASPX». Новая страница aspx в SharePoint без главной страницы создана. На этой странице мы можем выполнять любые операции, которые поддерживает SharePoint.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...