超时设置

来源:互联网 发布:淘宝联盟微信采集 编辑:程序博客网 时间:2024/04/29 23:27
<%@ page contentType="text/html; charset=UTF-8" %>
<%
//从session中获取用户姓名
String validName = session.getAttribute("userName")==null?"":(String)session.getAttribute("userName");
if("".equals(validName)){
 out.println("<script>window.parent.location='"+request.getContextPath()+"/index.jsp'</script>");
 return;
}
%> 
原创粉丝点击