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
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