An included file can, in turn, include other files. An .asp file can also 
include the same file more than once, provided that the <INCLUDE> statements 
do not cause a loop. For example, if the file First.asp includes the file 
Second.inc, Second.inc must not in turn include First.asp. Nor can a file 
include itself. ASP detects such loop or nesting errors, generates an error 
message, and stops processing the requested .asp file.

ASP includes files before executing script commands. Therefore, you cannot 
use a script command to build the name of an included file. For example, the 
following script would not open the file Header1.inc because ASP attempts to 
execute the #Include directive before it assigns a file name to the variable 
name.

&lt;!-- This script will fail --&gt;
&lt;% name=(header1 & ".inc") %&gt;
&lt;!--#include file="&lt;%= name %&gt;"--&gt;

===
okay. then how do you do it?
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to