VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T14:49:25Zhttp://stackoverflow.com/feeds/question/969761http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger2VBScript/ASP-Classic "Stop" Statement Not Breaking Into DebuggerDaniel Silveira2009-06-09T12:23:17Z2009-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#9697901Answer by AnthonyWJones for VBScript/ASP-Classic "Stop" Statement Not Breaking Into DebuggerAnthonyWJones2009-06-09T12:29:37Z2009-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#11594521Answer by Joel Spolsky for VBScript/ASP-Classic "Stop" Statement Not Breaking Into DebuggerJoel Spolsky2009-07-21T14:11:36Z2009-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#11595390Answer by Katy for VBScript/ASP-Classic "Stop" Statement Not Breaking Into DebuggerKaty2009-07-21T14:26:09Z2009-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>