You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
text1/web/index.jsp

29 lines
563 B

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>TITLE</title>
</head>
<body>
<%
if (session.getAttribute("student")!=null) {
%>
<jsp:forward page = "/WEB-INF/student/sIndex.jsp"/>
<%
}else if (session.getAttribute("teacher")!=null) {
%>
<jsp:forward page = "/WEB-INF/teacher/tIndex.jsp"/>
<%
}else if (session.getAttribute("admin")!=null) {
%>
<jsp:forward page = "/WEB-INF/admin/aIndex.jsp"/>
<%
}else {
%>
<jsp:forward page = "login.jsp" />
<%
}
%>
</body>
</html>