August 1999
Intermediate to advanced
1488 pages
72h 53m
English
debug(expression) debug(variable)
The debug function is a top-level function that is not associated with any core object. This function is used to display the value of an expression or variable in the Trace Information window when running the application in the JavaScript Application Manager's debug window.
Listing 8.68, when run in the JavaScript Application Manager's debugger, will display the value of the request.name when encountered.
<SERVER> // Display the value of the name passed in the request // to the application debug(request.name); </SERVER> |
Read now
Unlock full access