通过利用 #include 指令,您可以在做事器实行 ASP 文件之前,把另一个 ASP 文件的内容插入到这个 ASP 文件中。

#include 指令用于创建函数、页眉、页脚或者其他多个页面上须要重复利用的元素等。

如何利用 #include 指令

html调用asp函数ASP 引用文件 Bootstrap

这里有一个名为 \公众mypage.asp\"大众 的文件:

<!DOCTYPE html>

<html>

<body>

<h3>Words of Wisdom:</h3>

<p><!--#include file=\"大众wisdom.inc\"大众--></p>

<h3>The time is:</h3>

<p><!--#include file=\"大众time.inc\"大众--></p>

</body>

</html>

这是 \"大众wisdom.inc\"大众 文件:

\"大众One should never increase, beyond what is necessary,

the number of entities required to explain anything.\公众

这是 \公众time.inc\"大众 文件:

<%

Response.Write(Time)

%>

如果您在浏览器中查看源代码,它将如下所示:

<!DOCTYPE html>

<html>

<body>

<h3>Words of Wisdom:</h3>

<p>\公众One should never increase, beyond what is necessary,

the number of entities required to explain anything.\公众</p>

<h3>The time is:</h3>

<p>11:33:42 AM</p>

</body>

</html>

引用文件的语法

如需在 ASP 页面中引用文件,请把 #include 指令放在注释标签中:

<!--#include virtual=\"大众somefilename\"大众-->

or

<!--#include file =\"大众somefilename\"大众-->

Virtual 关键词

请利用关键词 virtual 来指示以虚拟目录开始的路径。

如果一个名为 \公众header.inc\"大众 的文件位于虚拟目录 /html 中,下面这行代码会插入 \"大众header.inc\"大众 文件中的内容:

<!-- #include virtual =\"大众/html/header.inc\"大众 -->

File 关键词

请利用关键词 file 来指示一个相对路径。
相对路径因此含有引用文件的目录开始的。

如果您在 html 目录中有一个文件,且 \公众header.inc\公众 文件位于 html 头部,下面这行代码将在您的文件中插入 \公众header.inc\"大众 文件中的内容:

<!-- #include file =\"大众headersheader.inc\"大众 -->

请把稳被引用文件 (headersheader.inc) 的路径是相对付引用文件的。
如果包含 #include 声明的文件不在 html 目录中,这个声明就不会生效。

提示和注释

在上面的一部分中,我们已经利用 \"大众.inc\"大众 来作为被被引用文件的文件扩展名。
请把稳:如果用户考试测验直接浏览 INC 文件,这个文件中内容将会被显示出来。
如果您的被引用文件中的内容包含机密的信息或者是您不想让任何用户看到的信息,那么最好还是利用 \"大众.asp\公众 作为扩展名。
ASP 文件中的源代码被编译后是不可见的。
被引用的文件也可引用其他文件,同时一个 ASP 文件可以对同一个文件引用多次。

主要事变:在脚本实行前,被引用的文件就会被处理和插入。
下面的脚本无法实行,这是由于 ASP 会在为变量赋值之前实行 #include 指令:

<%

fname=\公众header.inc\"大众

%>

<!--#include file=\"大众<%fname%>\"大众-->

您不能在脚本分隔符之间包含文件引用。
下面的脚本无法实行:

<%

For i = 1 To n

<!--#include file=\"大众count.inc\公众-->

Next

%>

但是这段脚本可以实行:

<% For i = 1 to n %>

<!--#include file=\公众count.inc\"大众 -->

<% Next %>