캐쉬없애기
메타태그
<META HTTP-EQUIV='Cache-Control' CONTENT='no-cache'>;
<META HTTP-EQUIV='Pragma' CONTENT='no-cache'>;
ASP
<%
Response.Expires = -1
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
%>
파일인클루드
상대경로로 잡을 경우
<!-- #include File="list.html" -->;
웹루트로 부터 절대 경로로 잡을 경우
<!-- #include virtual = "/include/asp/dbcon.asp"-->;
Ubound() - 배열의 크기를 구하는 함수
Ubound(배열함수)
Ubound(Arr) 제일 큰,마지막 첨자 리턴
split 함수
split(문자열, 분리문자) 결과값은 배열로 리턴
splitarr = split(str1,"-") '대상문자열,분리기준 ->;배열이 된다
splitarr(0), splitarr(1)....