ASP.NET WebForms应用程序。有一个自定义Web控件(IE继承自System.Web.UI.WebControls.WebControl)。我可以在CreateChildControls()或任何其他重载方法的任何地方放置断点,这些断点工作正常。但是,如果我尝试向绑定到页面上的Button的方法添加断点,则会在断点上出现错误:
SYSTEM
我已尝试清理解决方案,删除所有bin / obj文件夹,重新启动本地IIS,回收应用程序池,但都无济于事。
代码在VB.NET中(对不起)。 这是函数定义(在WebControl代码中):
The breakpoint will not currently be hit. No executable code of the debugger's target code is associated with this line. Possible causes include: conditional compilation, compiler optimizations, or the target architecture of this line is not supported by the current debugger code type.
以下是将函数与Button关联的代码:
Private Sub AddToCartClick(ByVal sender As Object, ByVal e As System.EventArgs)
// breakpoint on line 1
代码执行并且已经工作了很长时间,但是我无法使用断点进行调试。