调试器不会停止错误

调试器不会停止错误

本文介绍了调试器不会停止错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Visual Studio 2012在Asp.net MVC4项目上工作。



当调试过程中出现错误时,它用于停止错误。 p>

但是突然之间,调试器不会停止,只是吐出错误信息网页,如下所示。

如何将调试器设置为停止错误?

解决方案

确保启用异常助手:




I'm working on Asp.net MVC4 project using Visual Studio 2012.

When there's an error during debugging, it used to stop on the error.

But suddenly, the debugger does not stop and just spit out the error information webpage like below.

How can I set the debugger to stop on the error?

解决方案

Make sure the exception assistant is enabled:

这篇关于调试器不会停止错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 20:57