在頁頭部分判斷session是否已經為空或這session中包含的使用者屬性是否為空,如果為空則跳轉至首頁或登入頁。Forexample:====================<%String onlySession = (String)request.getParameter("user");%> <script type="text/javascript"> var onlySession = "<%=user%>"; if(onlySession=="null"||onlySession ==""){ alert("使用者超時,請重新登入!"); } var indexPath = "<c:url value="/index.jsp"/>"; //index page URL if(window.parent) { if(window.parent.parent) { if(window.parent.parent.parent){ window.parent.parent.parent.location = indexPath; } else { window.parent.parent.location = indexPath; } } else { window.parent.location = indexPath; } } else { window.location = indexPath; }</script> 如 whatismvc 所述一般的專案會新增過濾器,判斷是session是否為空。但如果只單純測試JSP的寫法,上面的即可。
在頁頭部分判斷session是否已經為空或這session中包含的使用者屬性是否為空,如果為空則跳轉至首頁或登入頁。Forexample:====================<%String onlySession = (String)request.getParameter("user");%> <script type="text/javascript"> var onlySession = "<%=user%>"; if(onlySession=="null"||onlySession ==""){ alert("使用者超時,請重新登入!"); } var indexPath = "<c:url value="/index.jsp"/>"; //index page URL if(window.parent) { if(window.parent.parent) { if(window.parent.parent.parent){ window.parent.parent.parent.location = indexPath; } else { window.parent.parent.location = indexPath; } } else { window.parent.location = indexPath; } } else { window.location = indexPath; }</script> 如 whatismvc 所述一般的專案會新增過濾器,判斷是session是否為空。但如果只單純測試JSP的寫法,上面的即可。