• 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>
  • 相关阅读:
    前人风采
    【C++ Primer 第16章】1. 定义模板 (一)
    CCF CSP认证考试试题
    【C++ Primer 第11章】4. 无序容器
    【C++ Primer 第11章 练习答案】2. 关联容器操作
    【C++ Primer 第11章】2. 关联容器操作
    dxRatingControl使用
    dxRangeTrackBar使用教程
    UniConnectDialog使用
    Delphi窗体置顶及失去焦点后取得焦点
  • 原文地址:https://www.cnblogs.com/thlzhf/p/2772419.html
Copyright © 2020-2023  润新知