所有的断点都不起作用了,为什么,应该怎样设置. 在线等.....

解决方案 »

  1.   

    Web.config中:
    <compilation 
       defaultLanguage="c#"
       debug="true"
    />
      

  2.   

    去掉bin或Debug目录里的文件,试着重新编译你的Debug版本,并确认你加断点之处是系统会执行的地方
      

  3.   

    我不是用C#, 是win32工程, 楼上的我早就做了,还是没用
      

  4.   

    我看了一下帮助,在tools->debugging->general 下改一个选项就行了
      

  5.   


    require source files to exactly match the orginal ... 选项去了
      

  6.   

    jxufewbt:
    在VS2005里调试,如果没有debug="true"的话,VS2005会提醒你的
      

  7.   

    请问为什么我的source files  与 original verson 不精确匹配了呢
      

  8.   

    Require source files to exactly match the original versionTells the debugger to verify that a source file matches the version of the source code used to build the executable you are debugging. If the version does not match, you will be prompted to find matching source. If matching source is not found, the source code will not be displayed during debugging.我找到了这么一段,但还是不能了解我是怎么生产这个问题的,我新建一个工程就可调试的,请高手指点一下,马上结分
      

  9.   

    在调试中的程序集与你的源码文件不相配,一般的原因是因为你做了改动,但没有重新编译,原因也许是你对项目做了什么设置改动,所以一般的做法是删除bin目录的东西,重新编译一遍,确认是你的Debug版本
      

  10.   

    我开发winform用vs2005的rc版试了一下,好象调试时有很多莫名其妙的问题,你重启一下就又好了,我试了几台机都这样.
      

  11.   

    没有正确引用dll
    http://community.csdn.net/Expert/topic/4360/4360725.xml?temp=.9707147
      

  12.   

    呵呵,不是这个问题,我主要是这个问题引起的,
    Require source files to exactly match the original version我想为什么会产生这个问题