2

I was trying to set a breakpoint in global.asa in an old classic ASP project with IIS 6 in Visual Studio 2005.

Somehow the context menu for actually setting the breakpoint somewhere in global.asa is disabled (greyed). How can I set a breakpoint then?

Breakpoints in .asp pages are no problem though and do work fine.

Tim B
  • 40,716
  • 16
  • 83
  • 128
Chris N
  • 235
  • 1
  • 2
  • 6

1 Answers1

2

Try this: How to: Debug Global.asa files. The short version is to place a VBScript Stop statement or JScript debugger at the beginning of the procedure, before any statements that you will want to step through.

sgwill
  • 9,814
  • 8
  • 35
  • 40