up vote 0 down vote favorite
share [g+] share [fb]

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 before the general VBScript.

Are there any other such directives in VBScript? Such as #If or something?

I'd like to be able to conditionally include or exclude a certain include file.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

According to this article there are six directives. Examples are given in the article.

They are:

  • #include
  • #config
  • #echo
  • #fsize
  • #flastmod
  • #exec
link|improve this answer
Thanks. That is very helpful. – Frank V Jul 1 '09 at 19:00
Wow, aspemporium.com.... I wonder how many hits they are getting these days. :) – joeslice Jul 8 '09 at 6:45
The aspemporium.com is written in ASP.NET itself so it looks like they've moved on too! But it's nice they keep the old stuff around. – tooshel Jul 10 '09 at 9:07
feedback

According to MSDN, though others are valid for Server Side Include files - only #include works in ASP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.