HTML

HTML 페이지 이동

denisOh 2013. 11. 14. 12:31

1. <head> 태그 내에 meta 태그 추가

<meta http-equiv="REFRESH" content="0; URL=index.asp">

content에 설정된것 처럼 0초후에 index.asp로 이동한다.

2. <head> 태그 내에 자바스크립트 추가

<SCRIPT type=text/javascript>
    location.href='index.asp';
</SCRIPT>