Debugging asp.net with firefox and visual studio.net - very slow compared to IE

前端 未结 4 1675
误落风尘
误落风尘 2020-12-23 18:01

Debugging asp.net websites/web projects in visual studio.net 2005 with Firefox is loads slower than using IE.

I\'ve read something somewhere that there is a way of

4条回答
  •  别那么骄傲
    2020-12-23 18:36

    For quick debugging try this..

    Add Debugger.Break() into your code at an appropriate place.

    Browse to the page in firefox (via localhost) if on local dev machine? and the Visual Studio Just in Time debugger should pop up.. select the currently open instance of Visual Studio and you can step into the code where every you want without having to start from the beginning or jumping to cursor.

    -- Lee

提交回复
热议问题