vote up 2 vote down star

I've used to put a "stop" statement in my VBScript/ASP-Classic code to break into debugger (Microsoft Script Editor, that comes with Microsoft Office).

But now it isn't breaking anymore. The "stop" is ignored and nothing happpens.

The server-side debugging flag is already enabled in IIS

How to solve this?


Sample Code, hello.asp

stop 
Response.Write "Hello W."
flag

44% accept rate

3 Answers

vote up 1 vote down

Are you running VBScript in an Office app? Wouldn't that be VBA?

For VBScript debugging you need to enable that with the /d switch on with wscript or cscript when running the vbs file:-

 wscript /d c:\myfolder\myscript.vbs

Edit: Did I miss the ASP-Classic bit?

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.

link|flag
You are right... But actually I'm runnig it from a ASP page. Any ideas? – Daniel Silveira Jun 9 at 12:33
Those flags are all set in IIS. – Daniel Silveira Jun 9 at 12:36
Check your event log, do you see any errors? – AnthonyWJones Jun 9 at 12:37
Actually there is... "Error: The Template Persistent Cache initialization failed for Application Pool 'DefaultAppPool' because of the following error: Could not create a Disk Cache Sub-directory for the Application Pool. The data may have additional error codes.." – Daniel Silveira Jun 9 at 12:39
See More info section of this KB: support.microsoft.com/kb/332097 – AnthonyWJones Jun 9 at 12:43
show 4 more comments
vote up 1 vote down

Try this instead of Stop:

Dim I
I = 1 / 0
link|flag
vote up 0 vote down

It may be a problem with the Registry - See http://support.microsoft.com/kb/252895

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.