转载原地址: http://www.cnblogs.com/huangjianwu/p/4539706.html

涉及到的内容是关于SharePoint 2013如何部署自定义的母版页和布局页。

  1. 进入到Site Settings中 , and we should click the menu of "Site collection features" in "Site Collection Administration" to enter site collection features manage page. Then, we positioning the row of "SharePoint Server Publishing Infrastructure" feature, and click the button of "Activate" in right position of current row to activate the feature.

Second, we should click the menu of "Manage site features" in "Site Actions" to enter site features manage page. Then, we positioning the row of "SharePoint Server Publishing" feature, and click the button of "Activate" in the right position of current row to activate the feature.

  1. Deploy a series of wsp package files which include "Custom_TopNavigation.wsp" and "Custom_MasterPageAndPageLayout.wsp".

  1. Now, we should click the menu of "Design Manager" to enter design manager page.

Next step, we should click the button of "Edit Master Pages" in the left navigation to enter master pages convert manage page.

In the master pages convert manage page, we can click the button of "Convert an HTML file to a SharePoint master page" to open a dialog window which can be used to do  select our custom html master page to convert.

  1. We should click the menu of "Master pages and page layouts" in "Web Designer Galleries" classify to enter master pages and page layouts manage page after our custom html master page convert successfully.

Then, we select our custom html master file and click the menu of "Publish a Major Version" to publish it in order to make it valid in master page manage page.

  1. We should click the menu of "Master page" in "Look and Feel" classify to enter master page manage page of current site collection references.

Then, we select "Custom_MasterPage" master page as our site master page, and select "Custom_SystemMasterPage" as our system master page.

  1. Now, we can click the menu of "Add a page" to open a dialog window which can be used to do add a page. For example: we add a page which named "HomePage", and select "Custom_PageLayout" page layout as its reference page layout.

  1. Sometimes we would like to set up a new page as our welcome page. So, we can click the menu of "Welcome Page" in "Look and Feel" classify to enter site welcome page manage page.

Then, we should click the button of "Browse..." to open a dialog window which can be used to do select a new page as our welcome page.

转载 SharePoint 2013配置Master Page and Page Layout的更多相关文章

  1. SharePoint 2013 配置基于表单的身份认证

    前 言 这里简单介绍一下为SharePoint 2013 配置基于表单的身份认证,简单的说,就是用Net提供的工具创建数据库,然后配置SharePoint 管理中心.STS服务.Web应用程序的三处w ...

  2. SharePoint 2013 配置启用搜索服务

    原文:SharePoint 2013 配置启用搜索服务 1.安装完毕SharePoint 2013,新建网站集,点击搜索,出现如下错误(因为没配置,别激动). 2.尝试启动服务器场中的服务之Share ...

  3. SharePoint 2013 配置开发环境,需安装VS2012插件

    原文:SharePoint 2013 配置开发环境,需安装VS2012插件 SharePoint 2013已经安装好了,接下来就是配置开发环境,安装VS2012,但是,装好了以后,发现没有ShareP ...

  4. SharePoint 2013 Deploy Master Page And Page Layout

    2013年9月27日的一篇随笔,其实也是自己编写的部署文档,由于客户是HK的,所以描述部分是用英文. 涉及到的内容是关于SharePoint 2013如何部署自定义的母版页和布局页. First, L ...

  5. [转载]SharePoint 2013测试环境安装配置指南

    软件版本 Windows Server 2012 标准版 SQL Server 2012 标准版 SharePoint Server 2013 企业版 Office Web Apps 2013 备注: ...

  6. [转载]SharePoint 2013搜索爬外网配置

    本文介绍SharePoint 2013 设置外网(Internet)爬网源: 下面是步聚: 1. 新建外部爬网源 a. 打开 “SharePoint 2013 Central Administrati ...

  7. 转载 SharePoint 2013 Search功能

    转载原出处: http://www.cnblogs.com/OceanEyes/p/SharePont-2013-Search-Develop.html 阅读目录 启用Search Service A ...

  8. SharePoint 2013 配置Excel Services

    前言:本文主要介绍如何启用SharePoint 2013版本Excel Services服务,并配置Excel Web Access部件,使Excel文档可以显示在Web页面中. 简单说一下流程,Sh ...

  9. SharePoint 2013 配置基于AD的Form认证

    前 言 配置SharePoint 2013基于AD的Form认证,主要有三步: 1. 修改管理中心的web.config: 2. 修改STS Application的web.config: 3. 修改 ...

随机推荐

  1. mybatis传入map参数parameterType

    基本数据类型:包含int,String,Date等.基本数据类型作为传参,只能传入一个.通过#{参数名} 即可获取传入的值 复杂数据类型:包含JAVA实体类.Map.通过#{属性名}或#{map的Ke ...

  2. spring 异常管理机制

    三.异常处理的几种实现: 3.1.在经典的三层架构模型中,通常都是这样来进行异常处理的: A.持久层一般抛出的是RuntiomeException类型的异常,一般不处理,直接向上抛出. B.业务层一般 ...

  3. [Unity菜鸟] Unity读XML

    1. 在Unity中调试可行,发布成exe可行,发布成web不行 Application.dataPath 在Unity中调试是在“..Assets”文件夹下, 发布成exe文件是在“..yourNa ...

  4. Stop-The-World

    Stop-The-World –Java中一种全局暂停的现象 –全局停顿,所有Java代码停止,native代码可以执行,但不能和JVM交互 –多半由于GC引起 •Dump线程 •死锁检查 •堆Dum ...

  5. 如何修改linux系统主机名称

    完成目标: 修改centos 7系统的主机名称 使用命令: hostnamectl [root@ossec-server ~]# hostnamectl --help hostnamectl [OPT ...

  6. C语言字符串函数

    strtok()     字符串分割函数strstr()     字符串查找函数 范例 #include <string.h> main() {     char * s = " ...

  7. nodejs创建express+ejs项目

    很多同学跟着 node.js开发指南 学习用 express+ejs 创建项目的时候,却总是无法成功,如: 运行 以下命令去创建 express+ejs 创建项目 $ express -t ejs m ...

  8. unity3d中获得物体的尺寸(size)

    1:获得诸如Plane.Cube的size.    1):可以为它们添加Collider,然后使用XXX.collider.bounds.size;该方法获得的size和缩放比例有关,是一一对应的,缩 ...

  9. SHA-1加密

    /** * SHA-1加密 * @param strSrc 要加密的字符串 * @return 加密后的字符串 */ public static String SHAEncrypt(String st ...

  10. windows2003远程桌面退出后系统自动注销的解决方法

    最近公司有一个奇怪的需求,意思是有一个网页,要时时的打开着.现在只有把这个网页在服务器上打开. 这样才能满足需求.但我在应用中遇见了个问题.我在服务器上打开网页后,关掉远程,过一会网页的运行效果就没有 ...