Any other preprocessor directives in VBScript/Classic ASP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:30:42Zhttp://stackoverflow.com/feeds/question/1070698http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1070698/any-other-preprocessor-directives-in-vbscript-classic-asp0Any other preprocessor directives in VBScript/Classic ASP?Frank2009-07-01T18:43:24Z2009-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#10707451Answer by Cory Larson for Any other preprocessor directives in VBScript/Classic ASP?Cory Larson2009-07-01T18:53:57Z2009-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>