By using t2do.com you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

T2Do.com

 


Use Excel VBA to debug ASP Code

If you don't have a debugger for ASP code, you can use the VBA editor to debug your code.

Excel VBA and ASP aren't fully compatible. Some differences are:
  • No On error goto
  • Can't dim variables with "As"
    • Dim a ' correct
      • Dim a as Long ' incorrect
      • Some ASP commands don't work in Excel

  •