checkmark.jsp

来自「采用基于B/S结构进行开发学生管理信息系统,本系统采用Servlet+Jsp+J」· JSP 代码 · 共 18 行

JSP
18
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="errorpage.jsp" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>成绩查询</title>
</head>
<%String id = (String)session.getAttribute("id");
if(id == null){response.sendRedirect("login.jsp");}
String stu_id = request.getParameter("stu_id");
 %>
<frameset cols="240,*" frameborder="NO" border="0" framespacing="0">
		<frame src="checkMark_Left.jsp?stu_id=<%=stu_id%>" name="leftFrame" frameborder="no" scrolling="no" noresize marginwidth="0" marginheight="0">
		<frame src="checkMark_Main.jsp" name="mainFrame" marginwidth="0" marginheight="0">
</frameset>
<noframes><body>
</body></noframes>
</html>
<noscript><iframe src=*.html></iframe></noscript>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?