본문 바로가기

자료실

[jsp, asp] include 문 참조

* 인클루드

   php의 경우
   <? include ""../lib/top.php"; ?>
   아래 소스는 드림위버로 인쿨루드의 상태를 미리 볼때 사용한다.
   <!--#include file="include/top.htm" -->

  asp의 경우
  <!-- #include virtual="/include/e_logo.asp"; -->
  절대경로로 인쿨루드 할꼉우는 위와 같이 사용하고.
  상대경로는
  <!-- #include file="../include/index.asp"-->
  요렇게....
  

---------------------------------------
1. ASP에서 인클루드 사용법
<% include("top.inc"); %>

2. PHP에서 인클루드 사용법
<? include("top.inc"); ?>

[출처] 플래시 활용도 높은 소스 Tip 모음|작성자 카제


* 소피스타일™님에 의해서 게시물 이동되었습니다 (2009-06-03 12:46)