You are viewing this page out of context. To see it in the context it is intended please click here.
About This Page
Reply posted by Pettrie on Mon 9 Feb 2004 in response to Debugging JavaScript in Your Applications
Re: Script Debugger vs. Script Editor
You can use:MS Visual Interdev (Visual Studio 6 SP5)
MS Script editor (MS Office XP)
.NET script debugger (.NET)
All work equaly well!
Notes 5 complains when using the "debugger" keyword, I alwys add the following
function As passthru text:
<script>
function debug() { debugger }
</script>
Then simple use debug() in your script
P3