Any other preprocessor directives in VBScript/Classic ASP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:30:42Z http://stackoverflow.com/feeds/question/1070698 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1070698/any-other-preprocessor-directives-in-vbscript-classic-asp 0 Any other preprocessor directives in VBScript/Classic ASP? Frank 2009-07-01T18:43:24Z 2009-07-08T06:44:07Z <p>The only pre-process directive that I know about in VBScript / Classic ASP is the #include. I don't know if that is the official name but I'm basically looking for code that can execute code or other instructions <em>before</em> the general VBScript.</p> <p>Are there any other such directives in VBScript? Such as #If or something? </p> <p>I'd like to be able to conditionally include or exclude a certain include file.</p> http://stackoverflow.com/questions/1070698/any-other-preprocessor-directives-in-vbscript-classic-asp/1070745#1070745 1 Answer by Cory Larson for Any other preprocessor directives in VBScript/Classic ASP? Cory Larson 2009-07-01T18:53:57Z 2009-07-01T18:53:57Z <p>According to <a href="http://www.aspemporium.com/tutorials.aspx?tid=5" rel="nofollow">this article</a> there are six directives. Examples are given in the article.</p> <p>They are:</p> <ul> <li>#include</li> <li>#config</li> <li>#echo</li> <li>#fsize</li> <li>#flastmod</li> <li>#exec</li> </ul>