How to use debug points?

I just downloaded Notepad ++ because I need to work on a classic asp project. I am a complete newbie with classic asp, and has been spoiled by asp.net and visual studio. I noticed that Notepad ++ has debugging points that you can place next to line numbers. Is there any way I can execute asp script code?

If not the best / easiest way to debug classic asp scripts?

thank

+3
source share
3 answers

As a suggestion: if you are the initial asp-developer, do not forget to put

 <% Option Explicit %>

at the beginning of each page.

This can save you many hours searching / debugging why certain code is not working.

, .

UPDATE: . -:

include asp, response.write - ( ), "ASPLIB_DeployStatus" ( "adsDeployed", "adsDeliveredDebug", "adsInDevelopment" "adsInDevelopmentDebug".

-. , , - .

.

- , .

+2

, Visual Studio, ( ) ASP Classic Visual Studio.

Visual Studio, Notepad ++, Windows Script Debugger ( MS) . , ASP, Script. Stop VBScript ( debugger, JScript), Script Debugger .

, IIS ASP, .

+1

Response.write - , . "cout" "dout"., cout Response.write, dout , , , , .

0

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


All Articles