Debug approval not requested in IIS 7

since migrating to Windows 7 (IIS 7.5), debug statements no longer trigger a pop-up dialog box.

I tested this in a separate project and noticed that they work when using the integrated Visual Studio Developer (Cassini) server, but they do not work when using the IIS web server.

This is a big problem for us, as we rely on debug statements to identify potential programming errors, so any help would be appreciated. Thank you Eyal.

+3
source share
2 answers

Which is because in the Output window, instead of the Debug window, unsuccessful debug statements are displayed.

To view the output window in Visual Studio 2008, go to the View menu and click Output.

I also find this uncomfortable. Additional Information...

0
source

This is the default behavior and cannot be changed. You can generate a file with statements that were not executed in your application. This will still help you keep track of your problems without stopping the application while working in IIS.

Take a look at this good article about it.

0
source

Source: https://habr.com/ru/post/1738730/


All Articles