博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Inside SharePoint 2010 (5): Pages and Navigation
阅读量:7087 次
发布时间:2019-06-28

本文共 1228 字,大约阅读时间需要 4 分钟。

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

ExpandedBlockStart.gif
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
>

转载于:https://www.cnblogs.com/thlzhf/archive/2012/11/15/2772419.html

你可能感兴趣的文章
SpringBoot中搭建Redis缓存
查看>>
首届国际互联网通信论坛浦东举行
查看>>
研究人员发现能够自愈的“肉体”,打造现实版“终结者”不再是梦
查看>>
Linux块设备开发详解及代码(版本3.10.0)
查看>>
抢票软件不靠谱?不如看看用AI怎么玩转12306
查看>>
区块链每日一问丨比特币怎么储存最安全?
查看>>
分享 | 带来全新交互体验的『支付宝AR』技术大解密
查看>>
升级Windows 10常见问题解决方案汇总
查看>>
曾鸣:区块链的春天还没有到来
查看>>
SqlServer性能检测和优化工具使用详细
查看>>
玩转无线电 -- 温哥华天车 RFID 票务系统
查看>>
innobackupex全量备份和增量备份脚本
查看>>
Entity Framework 4-从模型创建数据库
查看>>
【AI科幻】地球陨落 · 全新世界
查看>>
Vue.js 2.0 学习重点记录
查看>>
批处理大全
查看>>
面对对象的三大特征
查看>>
JAVA入门[14]-Spring MVC AOP
查看>>
bootstrap35-按钮嵌套
查看>>
Oracle常用的性能诊断语句
查看>>