As far as I know, all includes are processed before the ASP script executes. This makes sense because what if your included file had a function in it that your base page needed?
Printable View
As far as I know, all includes are processed before the ASP script executes. This makes sense because what if your included file had a function in it that your base page needed?
That's what I thought. Thanks!
It also depends on where your include statements are located.
If it is in a sub of function of your script, the code of the included file would not be exposed until you enter the sub or function.