How to enable Edit and Continue feature for Web Application Projects?

It is possible to edit and continue debugging web apps, even on x64 platform.

 

So, say goodbye to this window:

 

 

 

 

Simply tick the box on the WebClient project. (double click ‘properties’ in that project)

 

 

 

This will alleviate pretty much all your problems with regards to long build times, since now you can just put a break point wherever you wish, step through (using F11, and F10 (Debug – Step Into / Step Over).

 

Now, every time you get an exception, you can just type more/less/delete code where highlighted to fix it J

 

Also, for those that don’t know, use the IMMEDIATE WINDOW to type any line of code during debugging to get the ‘answer’

 

e.g. type

 

? myvariable.tostring()

 

To get the value

 

 

Found here:

 

http://blogs.msdn.com/b/webdevelopertips/archive/2008/11/26/tip-29-did-you-know-how-to-enable-edit-and-continue-feature-for-web-application-projects.aspx

 

 

And there are tones more:

 

big list here

 

http://blogs.msdn.com/b/webdevelopertips/

http://www.asp.net/web-forms/videos/how-do-i/choosing-the-right-programming-model

posted on 2012-11-09 09:22  cw_volcano  阅读(190)  评论(0编辑  收藏  举报