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

前端 未结 4 1644
误落风尘
误落风尘 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:17

    Are you serious? One of the main reasons I stick to Firefox is because its so much nicer to develop with..

    The live source update is awesome (view source > change code > rebuild > F5 in source)...

    What is actually "slow".. I mean, the some browsers tend to be slower at rendering, but I dont see how it affects your debug time? As soon as the request is made, and your breakpoint is hit in the code, it stops?

    0 讨论(0)
  • 2020-12-23 18:22

    bingo. found the article i read before.

    i just changed my network.dns.ipv4OnlyDomains property in about:config to localhost. restarted firefox and now firefox performs the same as IE when debugging asp.net with visual studio (2005).

    hope this helps anyone else that has the same problem.

    0 讨论(0)
  • 2020-12-23 18:35

    "Alternative solution". Do the following in Firefox

    1. about:config in the address bar
    2. set network.dns.disableIPv6 to true.
    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题