惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers Blog

博客园 - Asharp

使用PowerShell批量修改项目文件的版本号 PowerShell因为在此系统中禁止执行脚本解决方法 .NET中zip的压缩和解压——SharpCompress .NET中zip的压缩和解压 【转】Face detection with getUserMedia 【转】Web实现音频、视频通信 【转】关于IPv6的六大误区:IPv6并非更安全 【转】Silverlight与Flex的比较选择 [转]12 很有用的 Chrome 浏览器命令 How to Set Up SSL on IIS 7 JavaScript实现md5加密 在64位系统32的.net应用程序出现CLR20R3错误 【转】CLR20R3 程序终止的几种解决方案 【转】ASPxGridView 日期范围过滤扩展 DevExpress的JavaScript脚本智能提示 加载托管C++程序集出现0x800736B1异常的解决方法 Exchange server 2007安装篇 使用Orca在Visual Studio安装项目中创建自定义对话框 Visual Assist X中文注释提示错误问题
DevExpress的web.config配置
Asharp · 2011-06-08 · via 博客园 - Asharp

       DevExpress自动在web.config添加以下配置项:

1:  <devExpress>
2:          <settings rightToLeft="false"/>
3:          <compression enableHtmlCompression="false" enableCallbackCompression="true" enableResourceCompression="true" enableResourceMerging="false"/>
4:          <themes enableThemesAssembly="true"/>
5:          <errors callbackErrorRedirectUrl=""/>
6:      </devExpress>
7:  

       配置项目说明:

配置项 说明 默认值
enableHtmlCompression 设置是否对HTML进行压缩。 false
enableCallbackCompression 设置是否对Callback的内容进行压缩。 true
enableResourceCompression 设置是否对DevExpress的资源(CSS、JavaScript等)进行压缩。 true
enableResourceMerging 设置是资源合并 false
enableThemesAssembly 设置是允许使用Themes的程序集。 true
callbackErrorRedirectUrl 设置Callback错误是的转向Url  
rightToLeft 设置DevExpress控件是否从右向左,用于全球化的设置。DevExpress 2010.2新增。 false