试卷审批管理信息系统01
学生功能实现
查看个人信息
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <%@ page import="Bean.student" %> <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <! DOCTYPE html> < html > < head > < title >查看个人信息</ title > </ head > < body > < div align="center"> < h1 style="color: black;">信息查询</ h1 > < a href="xueshengmenu.jsp">返回学生子系统主页</ a > </ div > < div align="center"> < table border="1" > < tr > < th >学院</ th > < th >专业</ th > < th >班级</ th > < th >学号</ th > < th >姓名</ th > < th >性别</ th > < th >手机号码</ th > </ tr > < tr > < td align="center">${student.xueyuan}</ td > < td align="center">${student.zhuanye}</ td > < td align="center">${student.banji}</ td > < td align="center">${student.id}</ td > < td align="center">${student.xingming}</ td > < td align="center">${student.xingbie}</ td > < td align="center">${student.shoujihaoma}</ td > </ tr > </ table > </ div > </ body > </ html > |
修改个人密码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <! DOCTYPE html> < html > < head > < meta charset="UTF-8"> < title >修改个人密码</ title > </ head > < body > <% Object message = request.getAttribute("message"); if(message!=null && !"".equals(message)){ %> < script type="text/javascript"> alert("<%=request.getAttribute("message")%>"); </ script > <%} %> < div align="center"> < h1 style="color: black;">修改个人密码</ h1 > < a href="xueshengmenu.jsp">返回学生子系统主页</ a > < form name="form1" action="Servlet?method=supdate1" method="post" > < table border="1"> < tr > < td >旧密码:</ td > < td >< input type="text" name="oldmima" id="oldmima"></ td > </ tr > < tr > < td >新密码:</ td > < td >< input type="text" name="newmima1" id="newmima1"></ td > </ tr > < tr > < td >请再次确认新密码:</ td > < td >< input type="text" name="newmima2" id="newmima2" onkeyup="checkMima()">< span id="clue"></ span ></ td > </ tr > < tr > < td ></ td > < td >< input type="submit" value="修改" id="submit"/></ td > </ tr > </ table > </ form > </ div > < script type="text/javascript"> function checkMima() { var newmima1 = document.getElementById("newmima1").value; var newmima2 = document.getElementById("newmima2").value;; if(newmima1==""||newmima2=="") { document.getElementById("clue").innerHTML="< font color=red>密码不能为空</ font >"; document.getElementById("submit").disabled=true; }else if(newmima1==newmima2) { document.getElementById("clue").innerHTML="< font color=green>密码一致</ font >"; document.getElementById("submit").disabled=false; }else{ document.getElementById("clue").innerHTML="< font color=red>密码不一致</ font >"; document.getElementById("submit").disabled=true; } } </ script > </ body > </ html > |
查询考试
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <! doctype html> < html > < head > </ head > < body > < div align="center"> < h1 style="color: black;">浏览试卷审批卡信息</ h1 > < a href="xueshengmenu.jsp">返回学生子系统主页</ a > < form > < table border="1"> < tr > < td >试卷编号</ td > < td >课程名称</ td > < td >授课专业</ td > < td >授课班级</ td > </ tr > < c:forEach var="list" items="${list}"> < tr > < td align="center">${list.shenpikaid}</ td > < td align="center">< a href="Servlet?method=xueshengchaxunkaoshi1&shenpikaid=${list.getShenpikaid()}">${list.mingcheng}</ a ></ td > < td align="center">${list.shoukezhuanye}</ td > < td align="center">${list.shoukebanji}</ td > </ tr > </ c:forEach > </ table > </ form > </ div > </ body > </ html > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | <%@ page import="Bean.shenpika" %> <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <! doctype html> < html > < head > </ head > < body > < div align="center"> < h1 style="color: black;">试卷审批卡详细信息</ h1 > < a href="xueshengmenu.jsp">返回学生子系统主页</ a > < table border="1" > < tr > < td >课程名称</ td > < td >授课专业</ td > < td >授课班级</ td > < td >授课教师</ td > < td >考试日期</ td > < td >考试人数</ td > < td >考试方式</ td > < td >课程性质</ td > < td >试卷审批卡状态</ td > </ tr > < tr > < td align="center">${shenpika.mingcheng}</ td > < td align="center">${shenpika.shoukezhuanye}</ td > < td align="center">${shenpika.shoukebanji}</ td > < td align="center">${shenpika.jiaoshi}</ td > < td align="center">${shenpika.kaoshiriqi}</ td > < td align="center">${shenpika.kaoshirenshu}</ td > < td align="center">${shenpika.kaoshifangshi}</ td > < td align="center">${shenpika.kechengxingzhi}</ td > < td align="center">${shenpika.shenhezhuangtai}</ td > </ tr > </ table > </ div > </ body > </ html > |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· winform 绘制太阳,地球,月球 运作规律
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人