NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Server-side Include Directives -- global.asax

Insert the raw contents of a specified file anywhere within an ASP+ application file.

<!-- #include pathtype = filename -->

Parameters

pathtype
The type of the filename path. The path type can be one of the following:
File The file name is a relative path from the directory containing the file with the #include directive. The included file can be in the same directory or in a subdirectory; it cannot be in a directory above the file with the #include directive.
Virtual The file name is a full virtual path from a virtual directory on your Web site.
filename
The name of the file to be included. filename must contain the file name extension, and you must enclose the file name in quotation marks (").

Remarks

The included file is processed before any dynamic code is executed (much like a C pre-processor).

The #include tag must use HTML/XML comment delimiters to avoid being interpreted as static text.

Example

[To be supplied.]

See Also

ASP+ Application File Syntax