include 형식
<!--#include file="요청할 파일"-->
<!--#include virtual="요청할 파일"-->
-----------------------------------------------------
<!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>
-----------------------------------------------------
유의할점
include는 페이지의 스크립트를 실행하기 전에 먼저 읽힌다.
따라서,
<%
For i = 1 To n
<!--#include file="count.inc"-->
Next
%>
와 같은 스크립트는 제대로 작동하지 않을 것이다. 그렇기 때문에
<% For i = 1 to n %>
<!--#include file="count.inc" -->
<% Next %>
와 같은 형태로 사용해야 한다.
'Development > ASP' 카테고리의 다른 글
ASP Cint와 같은 형변환 함수 (0) | 2017.03.14 |
---|---|
ASP Global.asa 란? (0) | 2017.02.11 |
ASP session (0) | 2017.02.11 |
ASP cookies (0) | 2017.02.11 |
ASP VBscript (0) | 2017.02.11 |