VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:49:25Z http://stackoverflow.com/feeds/question/969761 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger 2 VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger Daniel Silveira 2009-06-09T12:23:17Z 2009-07-21T14:26:09Z <p>I've used to put a "<code>stop</code>" statement in my VBScript/ASP-Classic code to break into debugger (Microsoft Script Editor, that comes with Microsoft Office).</p> <p>But now it isn't breaking anymore. The "<code>stop</code>" is ignored and nothing happpens.</p> <p>The server-side debugging flag is already enabled in IIS</p> <p>How to solve this?</p> <p><hr /></p> <p>Sample Code, <code>hello.asp</code></p> <pre><code>stop Response.Write "Hello W." </code></pre> http://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger/969790#969790 1 Answer by AnthonyWJones for VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger AnthonyWJones 2009-06-09T12:29:37Z 2009-06-09T12:35:06Z <p>Are you running VBScript in an Office app? Wouldn't that be VBA?</p> <p>For VBScript debugging you need to enable that with the /d switch on with wscript or cscript when running the vbs file:-</p> <pre><code> wscript /d c:\myfolder\myscript.vbs </code></pre> <p><strong>Edit</strong>: Did I miss the ASP-Classic bit?</p> <p>In this case you have turned off debugging in the application configuration. In IIS6 open properties on the ASP application, select Home Directory tab, click "Configuration..." in the Application Settings section. Select the Debugging tab, select the debugging flags.</p> http://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger/1159452#1159452 1 Answer by Joel Spolsky for VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger Joel Spolsky 2009-07-21T14:11:36Z 2009-07-21T14:11:36Z <p>Try this instead of <code>Stop</code>:</p> <pre><code>Dim I I = 1 / 0 </code></pre> http://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger/1159539#1159539 0 Answer by Katy for VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger Katy 2009-07-21T14:26:09Z 2009-07-21T14:26:09Z <p>It may be a problem with the Registry - See <a href="http://support.microsoft.com/kb/252895" rel="nofollow">http://support.microsoft.com/kb/252895</a></p>