25 lines
867 B
Plaintext
25 lines
867 B
Plaintext
<%--
|
|
Created by IntelliJ IDEA.
|
|
User: 25589
|
|
Date: 2024/11/28
|
|
Time: 下午1:20
|
|
To change this template use File | Settings | File Templates.
|
|
--%>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>学生信息管理系统</title>
|
|
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/index.css">
|
|
</head>
|
|
<body>
|
|
<div class="nav-list">
|
|
<ul>
|
|
<li><a href="${pageContext.request.contextPath}/course/course.jsp" target="content">课程列表</a></li>
|
|
<li><a href="${pageContext.request.contextPath}/home.jsp" target="content">欢迎页</a></li>
|
|
</ul>
|
|
</div>
|
|
<iframe src="${pageContext.request.contextPath}/home.jsp" class="content" name="content" height="100%" width="100%"></iframe>
|
|
</body>
|
|
<script src="${pageContext.request.contextPath}/js/index.js"></script>
|
|
</html>
|