asp引用文件路径(asp如何引用sqlseve)
在生活中,很多人可能想了解和弄清楚ASP 引用文件的相关问题?那么关于asp引用文件路径的答案我来给大家详细解答下。
include 指令,您可以在服务器执行 ASP 文件之前,把另一个 ASP 文件的内容插入到这个 ASP 文件中。
include 指令
这里有一个名为 "mypage.asp" 的文件:
<!DOCTYPE html>
<h3>Words of Wisdom:</h3>
<p><!--include file="time.inc"--></p>
这是 "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>
<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>
引用文件的语法
如需在 ASP 页面中引用文件,请把 include virtual="somefilename"-->
or
<!--include virtual ="/html/header.inc" -->
File 关键词
请使用关键词 file 来指示一个相对路径。相对路径是以含有引用文件的目录开始的。
如果您在 html 目录中有一个文件,且 "header.inc" 文件位于 html 头部,下面这行代码将在您的文件中插入 "header.inc" 文件中的内容:
<!-- include 声明的文件不在 html 目录中,这个声明就不会生效。
提示和注释
在上面的一部分中,我们已经使用 ".inc" 来作为被被引用文件的文件扩展名。请注意:如果用户尝试直接浏览 INC 文件,这个文件中内容将会被显示出来。如果您的被引用文件中的内容包含机密的信息或者是您不想让任何用户看到的信息,那么最好还是使用 ".asp" 作为扩展名。ASP 文件中的源代码被编译后是不可见的。被引用的文件也可引用其他文件,同时一个 ASP 文件可以对同一个文件引用多次。
重要事项:在脚本执行前,被引用的文件就会被处理和插入。下面的脚本无法执行,这是由于 ASP 会在为变量赋值之前执行 include file="<%fname%>"-->
您不能在脚本分隔符之间包含文件引用。下面的脚本无法执行:
<%
For i = 1 To n
<!--include file="count.inc" -->
<% Next %>
温馨提示:通过以上关于ASP 引用文件内容介绍后,相信大家有新的了解,更希望可以对你有所帮助。