23
紀錄系統登出登入時間
無MasterPage的寫法
——————————————————————————-
<script type=”text/javascript” language=”javascript”>
window.onunload = CloseWindows;
function CloseWindows() {
//按下X關閉
if (event.clientY < 0) {
try {
var xmlhttp = new ActiveXObject(“Microsoft.XMLHTTP”);
//使用者自行關閉視窗時
xmlhttp.open(“POST”,”CloseWindows.aspx”, false);
xmlhttp.send();
return true;
}
catch (e) {
alert(‘close windows error message:’ + e.message);
}
}
}
</script>