In C#, I can say
#if DEBUG
Console.WriteLine("we are in debug mode");
#else
Console.WriteLine("we are in release mode");
#endif
This is handy for managing things that need to be different between debug and release builds, e.g. connection strings. Is there anything like this available in classic ASP?