728x90
반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!-- ASP 코드의 include --> <!-- 상대경로 --> <!--#include file="/second.html"--> <!-- 절대경로--> <!--#include virtual="/main/second.html"--> <!-- PHP 코드의 include --> <? include_once $_SERVER["DOCUMENT_ROOT"].'/main/second.html'; ?> <!-- javascript 코드의 include --> <script> // 상대주소 document.location.href="second.html"; // 절대주소 document.location.href="../main/second.html"; </script> <!-- HTML 코드의 include --> <!-- 절대주소 --> <link rel="stylesheet" href="../main/second.html"> | cs |
728x90
반응형
'코딩 삽질' 카테고리의 다른 글
[java] split에 마침표(dot) 사용하기 (0) | 2019.12.11 |
---|---|
[weblogic] 500 에러 (2) | 2019.12.10 |
[html, asp] 게시글이 한줄로 나오는 것 수정 (0) | 2019.11.24 |
[asp] write error log at text file (0) | 2019.11.24 |
[java] java.lang.NumberFormatException (0) | 2019.11.17 |