本文介绍了在ASP.NET中运行应用程序时要选择哪个选项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在调试时,我们通常会获得2个选项
1.修改web.config启用调试2.无需调试即可运行
如果选择了第一个选项,将会发生什么.
问候
on debugging we usually get 2 options
1.Modify web.config t enable debuuging
2.Run without debugging
and what will happen if 1st option chosed.
regards
推荐答案
<compilation debug="true" targetFramework="4.0">
释放应用程序时,将debug设置为false.没有此设置,您将无法调试代码.
文档此处 [ ^ ].
When you release the application set debug to false. Without this setting you will not be able to debug your code.
Documentation here[^].
这篇关于在ASP.NET中运行应用程序时要选择哪个选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!