zoukankan      html  css  js  c++  java
  • Inside SharePoint 2010 (5): Pages and Navigation

    #1, The SharePoint section of the web.config file

    View Code
    <configuration>
      <configSections>
        <sectionGroup name="SharePoint">
          <section name="SafeControls" />
          <section name="RuntimeFilter" />
          <section name="WebPartLimits" />
          <section name="WebPartCache" />
          <section name="WebPartWorkItem" />
          <section name="WebPartControls" />
          <section name="SafeMode" />
          <section name="MergedActions" />
          <section name="PeoplePickerWildcards" />
          <section name="WorkflowServices" />
          <section name="BlobCache" />
          <section name="OutputCacheProfiles" />
          <section name="ObjectCache" />
        </sectionGroup>
      </configSections>
      <SharePoint>
        <SafeMode />
        <WebPartLimits />
        <WebPartCache />
        <WebPartControls />
        <SafeControls />
        <PeoplePickerWildcards />
        <MergedActions />
        <BlobCache />
        <ObjectCache />
        <OutputCacheProfiles />
        <RuntimeFilter />
      </SharePoint>
    </configuration>

    #2, Modify Web.config file back from debug when deploying to Production:

    <configuration>
      <SharePoint>
        <SafeMode CallStack="false" />
      </SharePoint>
      <system.web>
        <customErrors mode="On" />
        <compilation debug="false" />
      </system.web>
    </configuration>
  • 相关阅读:
    生物信息学常用的在线网站及数据库汇总
    Python入门--6--今天抄袭人家一篇日志--numpy这个
    Perl语言--一些关于赋值、引用的东西
    Python入门--5--列表
    Idea下 调试Spring源代码
    Java OOM出现场景
    分布式事务解决方案
    mybatis generator 根据表生成对应的mapper文件
    签名工具类
    BPMN2.0
  • 原文地址:https://www.cnblogs.com/thlzhf/p/2772419.html
Copyright © 2011-2022 走看看