<html>
<head>
<title> 페이지 테스트</title>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<META HTTP-EQUIV="Cache-Control" CONTENT="No-Cache">
<script language="javascript">
<!--
window.history.forward();
function noBack() {window.history.forward();}
setTimeout("noBack()", 0);
function preventBack() {window.history.forward();}
setTimeout("preventBack()", 0);
window.onunload=function(){null};
-->
</script>
<script language="javascript">
<!--
document.onkeydown=KeyEventHandle;
document.onkeyup=KeyEventHandle;
document.onkeypress=KeyEventHandle;
function KeyEventHandle() {
ekey=event.keyCode;
if (ekey==8 ) { return false; } // backspace
if (ekey==17 ) { return false; } // ctrl
if (ekey==18 ) { return false; } // alt
if (ekey==40 ) { return false; } // down arrow
if (ekey==78 ) { return false; } // 알파벳 n ?????
if (ekey==122) { return false; } // F11
if (ekey==116) { event.keyCode = 0; return false; } //F5
if ( (ekey== 78) && (event.ctrlKey == true) ) { event.keyCode = 0; return false; } // CTRL+N
if (event.ctrlKey == true) { return false; }
if (event.altKey == true) { return false; }
}
-->
</script>
</head>
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false" onmousedown="return false" onload="noBack();" onpageshow="if(event.persisted) noBack();" onunload="">
TEST
</body>
</html>