Is there an equivalent to Debug.Print in ASP/VBScript?
I'm using DreamWeaver as a development tool.
Printable View
Is there an equivalent to Debug.Print in ASP/VBScript?
I'm using DreamWeaver as a development tool.
Not really - you can obviously use Response.Write
Or if you also have access to interdev if you have your server set up for debugging you can insert a STOP statement to break the code and then use
?VariableName
In the immediate window as with VB.