I am new to VS 2010 and am facing problem to Modify the code while debugging..Please help me If there is any setting so achieve this.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to http://connect.microsoft.com/VisualStudio/feedback/details/520179/vs2010-sp2-x86-unable-to-edit-and-continue Edit and Continue is supposed to be possible in ASP.NET projects with Visual Studio 2010, but only while you are stopped at a breakpoint.
Here are the steps from the Microsoft answer there to make sure Edit and Continue is turned on, and to see if it’s working for you:
When the breakpoint is hit, try to create a new variable inside the Page_Load function by writing the following lines of code:
int i = 1;
i += 5;
Hit F10 (or hit step into)