c#代码获取web.config配置文件里面设置的 <compilation debug="true"节点
==
在我们的web.config文件中,有像下面的这样的一个配置,
<system.web> <identity impersonate="true" userName="webuser" password="webuser"/> <compilation debug="true" targetFramework="4.0" /> </system.web>
<compilation debug="true"> 意味着可以插入一些debugger的中断,这样在开发是就可以调试了。
false 用于已经发布的项目,它不需要再调试了, 一般开发是用true, 发布正式项目用false.
主要区别是设置为true时
1) 由于编译优化被取消,编译ASP.NET 页需要更长的时间
2) 由于需要额外的debug,代码执行比较慢
3) 在系统运行时runtime 占用更多的内存,需要为debug创建冗余代码。
4) 脚本Scripts和图片没有被缓存cache,所以下载很慢。
所以以发布的项目一定要设为false.
出处:https://zhidao.baidu.com/question/2272336873195020908.html
===================================================================
下面代码可以获取掉debug的值
System.Web.Configuration.CompilationSection cmp = (System.Web.Configuration.CompilationSection)System.Configuration.ConfigurationManager.GetSection("system.web/compilation"); if (!cmp.Debug) { filterContext.ExceptionHandled = true; }
这里有CompilationSection 类的介绍,微软官方的地址:
https://msdn.microsoft.com/zh-cn/library/system.web.configuration.compilationsection(v=vs.80).aspx
出处:https://blog.csdn.net/u011511086/article/details/77767998
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/9329013.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!
posted on 2018-07-18 14:36 jack_Meng 阅读(1347) 评论(0) 编辑 收藏 举报