Sharepoint 2007 不带母版页的Sharepoint 2007页面

Sharepoint 2007 不带母版页的Sharepoint 2007页面,sharepoint-2007,Sharepoint 2007,我想知道如何在sharepoint 2007中创建没有母版页的页面。tks 在SPD中打开站点,右键单击“文件夹列表”窗格中的根目录,选择“新建”,然后选择“ASPX”。将在SharePoint中创建不带母版页的新aspx页。在此页面中,我们可以执行SharePoint支持的任何操作。在SPD中打开站点,右键单击“文件夹列表”窗格中的根目录,选择“新建”,然后选择“ASPX”。将在SharePoint中创建不带母版页的新aspx页。在此页面中,我们可以执行SharePoint支持的任何操作。请创

我想知道如何在sharepoint 2007中创建没有母版页的页面。tks

在SPD中打开站点,右键单击“文件夹列表”窗格中的根目录,选择“新建”,然后选择“ASPX”。将在SharePoint中创建不带母版页的新aspx页。在此页面中,我们可以执行SharePoint支持的任何操作。

在SPD中打开站点,右键单击“文件夹列表”窗格中的根目录,选择“新建”,然后选择“ASPX”。将在SharePoint中创建不带母版页的新aspx页。在此页面中,我们可以执行SharePoint支持的任何操作。

请创建一个不继承母版页的页面布局,然后从该页面布局创建页面。这仅适用于启用发布功能的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>

请创建一个不继承母版页的页面布局,然后从该页面布局创建页面。这仅适用于启用发布功能的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>


你的意思是没有“站点”吗。。。不我是说没有母版页的页面。。。喜欢没有侧边栏,没有全局导航栏。。。没有什么。。。我不知道怎么形容它。。。没有母版页的页面…您可以修改页面的源代码吗?是的,我可以。。。但如果可能的话,我正在寻找另一个解决方案。。。因为这将为最终用户提供。。。他们是不可信任的……你到底想达到什么目的?从技术上讲不是。你想实现什么样的业务流程?你的意思是没有“站点”?嗯。。。不我是说没有母版页的页面。。。喜欢没有侧边栏,没有全局导航栏。。。没有什么。。。我不知道怎么形容它。。。没有母版页的页面…您可以修改页面的源代码吗?是的,我可以。。。但如果可能的话,我正在寻找另一个解决方案。。。因为这将为最终用户提供。。。他们是不可信任的……你到底想达到什么目的?从技术上讲不是。您正在尝试实施什么业务流程?