DOCUMENT:Q224963 29-OCT-2000 [iis] TITLE :Using Enhanced All code in the included page appears to the scripting engine as though it were between the tags. Therefore, unlike the #include directive, your included page should consist of raw code only. For example, consider the following #include statement: This statement would need to include a page similar to the following: <% For X = 1 To 5 Response.Write "
Howdy!
" Next %> Now consider the following This page would need to include a page similar to the following: For X = 1 To 5 Response.Write "Howdy!
" Next The Note: No actual code should placed between the tags in the parent page, as it will be ignored. The SRC attribute can use either relative or virtual paths, as shown in the following table: +-------------------------------------+ | Path Style | Example Syntax | +-------------------------------------+ | Relative | SRC="file.ext" | +-------------------------------------+ | Relative | SRC="folder\file.ext" | +-------------------------------------+ | Virtual | SRC="\folder\file.ext" | +-------------------------------------+ | Virtual | SRC="/folder/file.ext" | +-------------------------------------+ The following ASP code demonstrates how to use the new