├── .gitignore ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── lib │ │ ├── jspsmart.jar │ │ ├── jstl-1.2.jar │ │ ├── jtds-1.2.jar │ │ ├── listener.jar │ │ └── mysql-connector-java-5.0.8-bin.jar │ └── web.xml ├── banji │ ├── banjiadd.jsp │ ├── banjilist.jsp │ └── banjishow.jsp ├── chengji │ ├── chengjiadd.jsp │ ├── chengjilist.jsp │ ├── chengjilist2.jsp │ ├── chengjishow.jsp │ └── chengjiupdate.jsp ├── head.jsp ├── images │ ├── authority │ │ ├── +.gif │ │ ├── -.gif │ │ ├── 1.gif │ │ ├── 11.gif │ │ ├── 1_add.png │ │ ├── 1_close.png │ │ ├── 1_open.png │ │ ├── 2.gif │ │ ├── 22.gif │ │ ├── 2_edit.png │ │ ├── 33.gif │ │ ├── 3_del.png │ │ ├── 404.jpg │ │ ├── VerifyCode.png │ │ ├── act_btn.gif │ │ ├── add.jpg │ │ ├── ajax-loading.gif │ │ ├── arrow.gif │ │ ├── back.gif │ │ ├── bar9.gif │ │ ├── bg.gif │ │ ├── blank.gif │ │ ├── border.png │ │ ├── box_tit_bg.gif │ │ ├── closed.gif │ │ ├── controls.png │ │ ├── del.gif │ │ ├── edt.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.png │ │ ├── first.gif │ │ ├── go.gif │ │ ├── home.gif │ │ ├── last.gif │ │ ├── left_tab_Selected.png │ │ ├── left_tab_Selectedno.png │ │ ├── left_tabid_cnt_top.png │ │ ├── left_tt.gif │ │ ├── line_conn.gif │ │ ├── loading.gif │ │ ├── loading_background.png │ │ ├── login_1.gif │ │ ├── login_1.jpg │ │ ├── login_2.gif │ │ ├── login_3.gif │ │ ├── login_4.gif │ │ ├── login_5.gif │ │ ├── login_6.gif │ │ ├── logo.png │ │ ├── main_12_me.gif │ │ ├── main_12_me2.gif │ │ ├── minus.jpg │ │ ├── next.gif │ │ ├── tab.gif │ │ ├── tab_03.gif │ │ ├── tab_05.gif │ │ ├── tab_07.gif │ │ ├── tab_12.gif │ │ ├── tab_15.gif │ │ ├── tab_17.gif │ │ ├── tab_18.gif │ │ ├── tab_19.gif │ │ ├── tab_20.gif │ │ ├── tableline.jpg │ │ ├── tableline_bottom.jpg │ │ ├── tableline_top.jpg │ │ ├── tablemde.jpg │ │ ├── tb.gif │ │ ├── tdbj.gif │ │ ├── tip.gif │ │ ├── top.jpg │ │ ├── top_bg.jpg │ │ ├── top_bg.png │ │ ├── top_logo.jpg │ │ ├── top_logo.png │ │ ├── top_tt_bg.gif │ │ ├── zTreeStandard.gif │ │ ├── zTreeStandard.png │ │ └── zTreeStandard1.gif │ ├── common │ │ ├── 1.jpg │ │ ├── 1_hover.jpg │ │ ├── 2.jpg │ │ ├── 2_hover.jpg │ │ ├── 3.jpg │ │ ├── 3_hover.jpg │ │ ├── close.jpg │ │ ├── date.jpg │ │ ├── logo.jpg │ │ ├── module_1.png │ │ ├── module_2.png │ │ ├── module_3.png │ │ ├── month.jpg │ │ ├── nav_hide.png │ │ ├── nav_item_minus.jpg │ │ ├── nav_item_plus.jpg │ │ ├── nav_item_v.jpg │ │ ├── nav_item_v_hover.jpg │ │ ├── nav_show.png │ │ ├── page_close.png │ │ └── user.jpg │ ├── login │ │ ├── btn.jpg │ │ ├── btn_hover.jpg │ │ └── login.png │ └── xngzf │ │ ├── ht01.jpeg │ │ └── ht02.jpeg ├── index.jsp ├── kc │ ├── kcadd.jsp │ ├── kclist.jsp │ └── kcshow.jsp ├── left.jsp ├── login.jsp ├── password.jsp ├── scripts │ ├── My97DatePicker │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── config.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── artDialog │ │ ├── artDialog.js │ │ ├── artDialog.source.js │ │ ├── jquery.artDialog.js │ │ ├── jquery.artDialog.source.js │ │ ├── plugins │ │ │ ├── iframeTools.js │ │ │ └── iframeTools.source.js │ │ └── skins │ │ │ ├── aero.css │ │ │ ├── aero │ │ │ ├── aero_s.png │ │ │ ├── aero_s2.png │ │ │ └── ie6 │ │ │ │ ├── aui_close.hover.png │ │ │ │ ├── aui_close.png │ │ │ │ ├── aui_e.png │ │ │ │ ├── aui_n.png │ │ │ │ ├── aui_ne.png │ │ │ │ ├── aui_nw.png │ │ │ │ ├── aui_s.png │ │ │ │ ├── aui_se.png │ │ │ │ ├── aui_sw.png │ │ │ │ ├── aui_title_icon.png │ │ │ │ └── aui_w.png │ │ │ ├── black.css │ │ │ ├── black │ │ │ ├── bg.png │ │ │ ├── bg2.png │ │ │ ├── bg_css3.png │ │ │ ├── bg_css3_2.png │ │ │ └── ie6 │ │ │ │ ├── close.hover.png │ │ │ │ ├── close.png │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── blue.css │ │ │ ├── blue │ │ │ ├── bg.png │ │ │ ├── bg2.png │ │ │ ├── bg_css3.png │ │ │ ├── bg_css3_2.png │ │ │ └── ie6 │ │ │ │ ├── close.hover.png │ │ │ │ ├── close.png │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── chrome.css │ │ │ ├── chrome │ │ │ ├── border.png │ │ │ └── chrome_s.png │ │ │ ├── default.css │ │ │ ├── green.css │ │ │ ├── green │ │ │ ├── bg.png │ │ │ ├── bg2.png │ │ │ ├── bg_css3.png │ │ │ ├── bg_css3_2.png │ │ │ ├── color_bg.png │ │ │ └── ie6 │ │ │ │ ├── close.hover.png │ │ │ │ ├── close.png │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── icons │ │ │ ├── error.png │ │ │ ├── face-sad.png │ │ │ ├── face-smile.png │ │ │ ├── loading.gif │ │ │ ├── question.png │ │ │ ├── succeed.png │ │ │ └── warning.png │ │ │ ├── idialog.css │ │ │ ├── idialog │ │ │ ├── idialog_s.png │ │ │ ├── idialog_s2.png │ │ │ └── ie6 │ │ │ │ ├── aui_close.hover.png │ │ │ │ ├── aui_close.png │ │ │ │ ├── aui_e.png │ │ │ │ ├── aui_n.png │ │ │ │ ├── aui_ne.png │ │ │ │ ├── aui_nw.png │ │ │ │ ├── aui_s.png │ │ │ │ ├── aui_se.png │ │ │ │ ├── aui_sw.png │ │ │ │ └── aui_w.png │ │ │ ├── opera.css │ │ │ ├── opera │ │ │ ├── ie6 │ │ │ │ ├── aui_close.hover.png │ │ │ │ ├── aui_close.png │ │ │ │ ├── aui_e.png │ │ │ │ ├── aui_n.png │ │ │ │ ├── aui_ne.png │ │ │ │ ├── aui_nw.png │ │ │ │ ├── aui_s.png │ │ │ │ ├── aui_se.png │ │ │ │ ├── aui_sw.png │ │ │ │ └── aui_w.png │ │ │ ├── s1.png │ │ │ └── s2.png │ │ │ ├── simple.css │ │ │ └── twitter.css │ ├── authority │ │ ├── commonAll.js │ │ └── idCardValidate.js │ ├── fancybox │ │ ├── jquery.easing-1.3.pack.js │ │ ├── jquery.fancybox-1.3.4.js │ │ ├── jquery.fancybox-1.3.4.pack.js │ │ └── jquery.mousewheel-3.0.4.pack.js │ ├── jquery │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery-1.7.1.js │ │ └── jquery.alerts.js │ └── zTree │ │ ├── jquery.ztree.all-3.2.js │ │ ├── jquery.ztree.all-3.2.min.js │ │ ├── jquery.ztree.core-3.2.js │ │ ├── jquery.ztree.core-3.2.min.js │ │ ├── jquery.ztree.excheck-3.2.js │ │ ├── jquery.ztree.excheck-3.2.min.js │ │ ├── jquery.ztree.exedit-3.2.js │ │ └── jquery.ztree.exedit-3.2.min.js ├── style │ └── authority │ │ ├── Copy of zTreeStyle.css │ │ ├── basic_layout.css │ │ ├── common_style.css │ │ ├── jquery.fancybox-1.3.4.css │ │ ├── login_css.css │ │ ├── main_css.css │ │ └── zTreeStyle.css ├── uploadfile │ └── readme.txt └── user │ ├── useradd.jsp │ ├── userlist.jsp │ ├── userlist2.jsp │ ├── userlist3.jsp │ ├── usershow.jsp │ └── userupdate.jsp ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── src └── chengji ├── bean ├── Banji.java ├── Chengji.java ├── Kc.java └── User.java ├── dao ├── BanjiDao.java ├── ChengjiDao.java ├── KcDao.java └── UserDao.java ├── servlet ├── BanjiServlet.java ├── ChengjiServlet.java ├── KcServlet.java └── UserServlet.java └── util ├── DBConn.java ├── Fenye.java ├── Pager.java └── Util.java /.gitignore: -------------------------------------------------------------------------------- 1 | ###################################################################### 2 | # Build Tools 3 | 4 | .gradle 5 | /build/ 6 | !gradle/wrapper/gradle-wrapper.jar 7 | 8 | target/ 9 | !.mvn/wrapper/maven-wrapper.jar 10 | 11 | out/ 12 | 13 | ###################################################################### 14 | # IDE 15 | 16 | ### STS ### 17 | .apt_generated 18 | .classpath 19 | .factorypath 20 | .project 21 | .settings 22 | .springBeans 23 | 24 | ### IntelliJ IDEA ### 25 | .idea 26 | *.iws 27 | *.iml 28 | *.ipr 29 | 30 | ### NetBeans ### 31 | nbproject/private/ 32 | build/* 33 | nbbuild/ 34 | dist/ 35 | nbdist/ 36 | .nb-gradle/ 37 | 38 | ###################################################################### 39 | # Others 40 | *.log 41 | *.xml.versionsBackup 42 | *.swp 43 | 44 | !*/build/*.java 45 | !*/build/*.html 46 | !*/build/*.xml 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

203.学生成绩管理系统

2 | 3 | - 完整代码获取地址:从戎源码网 ([https://armycodes.com/](https://armycodes.com/)) 4 | - 技术探讨、资料分享,请加QQ群:692619798 5 | - 作者微信:19941326836 QQ:952045282 6 | - 承接计算机毕业设计、Java毕业设计、Python毕业设计、深度学习、机器学习 7 | - 选题+开题报告+任务书+程序定制+安装调试+论文+答辩ppt 一条龙服务 8 | - 所有选题地址 ([https://github.com/YuLin-Coder/AllProjectCatalog](https://github.com/YuLin-Coder/AllProjectCatalog)) 9 | 10 | ## 项目介绍 11 | 基于java+jsp的学生成绩管理系统:前端 jsp、jquery,后端 servlet、jdbc;角色分为管理员、学生;集成课程管理、班级管理、学生管理、成绩管理等功能于一体的系统。 12 | 13 | ## 功能介绍 14 | 15 | - 基本功能:登录,退出,密码修改 16 | - 课程管理:课程信息的增删改查,按课程名称模糊查询 17 | - 班级管理:班级信息的增删改查,按班级名称模糊查询 18 | - 学生管理:学生信息的增删改查,按用户名和姓名模糊查询,给学生重置密码 19 | - 成绩管理:根据学生信息进行成绩管理,成绩信息的增删改查 20 | 21 | ## 环境 22 | 23 | - IntelliJ IDEA 2021.3 24 | 25 | - Mysql 5.7.26 26 | 27 | - Tomcat 7.0.73 28 | 29 | - JDK 1.8 30 | 31 | ## 运行截图 32 | 33 | ![](screenshot/1.png) 34 | 35 | ![](screenshot/2.png) 36 | 37 | ![](screenshot/3.png) 38 | 39 | ![](screenshot/4.png) 40 | 41 | ![](screenshot/5.png) 42 | 43 | ![](screenshot/6.png) 44 | 45 | ![](screenshot/7.png) 46 | 47 | ![](screenshot/8.png) 48 | 49 | ![](screenshot/9.png) 50 | -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jspsmart.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/WEB-INF/lib/jspsmart.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jtds-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/WEB-INF/lib/jtds-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/listener.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/WEB-INF/lib/listener.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.0.8-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/WEB-INF/lib/mysql-connector-java-5.0.8-bin.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | login.jsp 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | userServlet 20 | chengji.servlet.UserServlet 21 | 22 | 23 | 24 | 25 | userServlet 26 | /userServlet/* 27 | 28 | 29 | 30 | 31 | 32 | banjiServlet 33 | chengji.servlet.BanjiServlet 34 | 35 | 36 | 37 | 38 | banjiServlet 39 | /banjiServlet/* 40 | 41 | 42 | 43 | 44 | 45 | kcServlet 46 | chengji.servlet.KcServlet 47 | 48 | 49 | 50 | 51 | kcServlet 52 | /kcServlet/* 53 | 54 | 55 | 56 | 57 | 58 | chengjiServlet 59 | chengji.servlet.ChengjiServlet 60 | 61 | 62 | 63 | 64 | chengjiServlet 65 | /chengjiServlet/* 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /WebRoot/banji/banjiadd.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 40 | 41 | 42 | 43 | <%@ include file="../left.jsp" %> 44 | 45 | 46 | 47 |
48 | 49 | 50 | 51 |
52 | 56 |
57 |
58 | 59 |
60 | 61 | 62 | 63 | 64 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 84 | 85 |
班级名称: 65 | 66 | 67 |
操作: 78 | 79 |       80 | 81 | 82 |
86 |
87 | 88 |
89 |
90 | 91 | 92 |
93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /WebRoot/banji/banjilist.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 82 | 83 |
${biaoti }
39 | 40 |
41 | 42 |      43 | 班级名称: 44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 62 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
班级名称操作
60 | ${bean.bjname }  61 | 63 | 查看       64 | 65 | 删除 66 |
${pagerinfo }
80 | 81 |
84 | 85 | 86 |
87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /WebRoot/banji/banjishow.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 29 | 30 | 31 | 32 | <%@ include file="../left.jsp" %> 33 | 34 | 35 | 36 |
37 | 38 | 39 | 40 |
41 | 45 |
46 |
47 | 48 |
49 | 50 | 51 | 52 | 55 | 59 | 60 | 61 | 62 | 63 | 64 | 69 | 70 | 71 |
53 | 班级名称: 54 | 56 | 57 | 58 |
操作: 65 | 66 | 67 | 68 |
72 |
73 | 74 |
75 |
76 | 77 | 78 |
79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /WebRoot/chengji/chengjiadd.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 61 | 62 | 63 | 64 | <%@ include file="../left.jsp" %> 65 | 66 | 67 | 68 |
69 | 70 | 71 | 72 |
73 | 77 |
78 |
79 | 80 |
81 | 82 | 83 | 84 | 87 | 95 | 96 | 97 | 98 | 99 | 100 | 103 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 118 | 119 | 120 |
85 | 课程: 86 | 88 | 94 |
101 | 分数: 102 | 104 | 105 |
操作: 113 | 114 |       115 | 116 | 117 |
121 |
122 | 123 |
124 |
125 | 126 | 127 |
128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /WebRoot/chengji/chengjilist.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 96 | 97 |
${biaoti }
39 | 40 |
41 | 42 | 43 |         44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 64 | 67 | 70 | 71 | 74 | 75 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 |
学号姓名课程考试分数操作
62 | ${bean.user.username }  63 | 65 | ${bean.user.truename }  66 | 68 | ${bean.kc.kcname }  69 | 72 | ${bean.fenshu }  73 | 77 | 78 | 查看       79 | 修改       80 | 删除 81 |
${pagerinfo }
94 | 95 |
98 | 99 | 100 |
101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /WebRoot/chengji/chengjilist2.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 90 | 91 |
${biaoti }
39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 62 | 65 | 66 | 69 | 70 | 71 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 |
学号姓名课程考试分数操作
57 | ${bean.user.username }  58 | 60 | ${bean.user.truename }  61 | 63 | ${bean.kc.kcname }  64 | 67 | ${bean.fenshu }  68 | 72 | 73 | 查看       74 | 75 |
${pagerinfo }
88 | 89 |
92 | 93 | 94 |
95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /WebRoot/chengji/chengjishow.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 35 | 36 | 37 | 38 | <%@ include file="../left.jsp" %> 39 | 40 | 41 | 42 |
43 | 44 | 45 | 46 |
47 | 51 |
52 |
53 | 54 |
55 | 56 | 57 | 58 | 61 | 65 | 66 | 67 | 68 | 71 | 75 | 76 | 77 | 78 | 79 | 82 | 86 | 87 | 88 | 89 | 92 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 108 | 109 | 110 |
59 | 学号: 60 | 62 | 63 | 64 |
69 | 姓名: 70 | 72 | 73 | 74 |
80 | 课程: 81 | 83 | 84 | 85 |
90 | 分数: 91 | 93 | 94 |
操作: 104 | 105 | 106 | 107 |
111 |
112 | 113 |
114 |
115 | 116 | 117 |
118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /WebRoot/chengji/chengjiupdate.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 63 | 64 | 65 | 66 | <%@ include file="../left.jsp" %> 67 | 68 | 69 | 70 |
71 | 72 | 73 | 74 |
75 | 79 |
80 |
81 | 82 |
83 | 84 | 85 | 86 | 89 | 93 | 94 | 95 | 96 | 97 | 100 | 103 | 104 | 105 | 106 | 109 | 112 | 113 | 114 | 115 | 116 | 119 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 134 | 135 | 136 |
87 | 学号: 88 | 90 | 91 | 92 |
98 | 姓名: 99 | 101 | 102 |
107 | 课程: 108 | 110 | 111 |
117 | 分数: 118 | 120 | 121 |
操作: 129 | 130 |       131 | 132 | 133 |
137 |
138 | 139 |
140 |
141 | 142 | 143 |
144 | 145 | 146 | 147 | -------------------------------------------------------------------------------- /WebRoot/head.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | 3 |
4 | 7 | 19 |
20 | -------------------------------------------------------------------------------- /WebRoot/images/authority/+.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/+.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/-.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/-.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/1.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/11.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/1_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/1_add.png -------------------------------------------------------------------------------- /WebRoot/images/authority/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/1_close.png -------------------------------------------------------------------------------- /WebRoot/images/authority/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/1_open.png -------------------------------------------------------------------------------- /WebRoot/images/authority/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/2.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/22.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/2_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/2_edit.png -------------------------------------------------------------------------------- /WebRoot/images/authority/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/33.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/3_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/3_del.png -------------------------------------------------------------------------------- /WebRoot/images/authority/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/404.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/VerifyCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/VerifyCode.png -------------------------------------------------------------------------------- /WebRoot/images/authority/act_btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/act_btn.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/add.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/add.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/ajax-loading.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/arrow.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/back.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/bar9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/bar9.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/bg.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/blank.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/border.png -------------------------------------------------------------------------------- /WebRoot/images/authority/box_tit_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/box_tit_bg.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/closed.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/controls.png -------------------------------------------------------------------------------- /WebRoot/images/authority/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/del.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/edt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/edt.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_close.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_loading.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_nav_left.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_nav_right.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_e.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_n.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_ne.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_nw.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_s.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_se.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_sw.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_shadow_w.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_title_left.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_title_main.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_title_over.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancy_title_right.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancybox-x.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancybox-y.png -------------------------------------------------------------------------------- /WebRoot/images/authority/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/fancybox.png -------------------------------------------------------------------------------- /WebRoot/images/authority/first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/first.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/go.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/go.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/home.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/last.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/left_tab_Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/left_tab_Selected.png -------------------------------------------------------------------------------- /WebRoot/images/authority/left_tab_Selectedno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/left_tab_Selectedno.png -------------------------------------------------------------------------------- /WebRoot/images/authority/left_tabid_cnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/left_tabid_cnt_top.png -------------------------------------------------------------------------------- /WebRoot/images/authority/left_tt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/left_tt.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/line_conn.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/loading.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/loading_background.png -------------------------------------------------------------------------------- /WebRoot/images/authority/login_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_1.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/login_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_1.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/login_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_2.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/login_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_3.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/login_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_4.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/login_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_5.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/login_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/login_6.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/logo.png -------------------------------------------------------------------------------- /WebRoot/images/authority/main_12_me.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/main_12_me.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/main_12_me2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/main_12_me2.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/minus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/minus.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/next.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_03.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_05.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_07.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_12.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_15.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_17.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_18.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_19.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tab_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tab_20.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tableline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tableline.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/tableline_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tableline_bottom.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/tableline_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tableline_top.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/tablemde.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tablemde.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tb.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tdbj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tdbj.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/tip.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/top.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/top_bg.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/top_bg.png -------------------------------------------------------------------------------- /WebRoot/images/authority/top_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/top_logo.jpg -------------------------------------------------------------------------------- /WebRoot/images/authority/top_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/top_logo.png -------------------------------------------------------------------------------- /WebRoot/images/authority/top_tt_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/top_tt_bg.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/zTreeStandard.gif -------------------------------------------------------------------------------- /WebRoot/images/authority/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/zTreeStandard.png -------------------------------------------------------------------------------- /WebRoot/images/authority/zTreeStandard1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/authority/zTreeStandard1.gif -------------------------------------------------------------------------------- /WebRoot/images/common/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/1.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/1_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/1_hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/2.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/2_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/2_hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/3.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/3_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/3_hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/close.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/date.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/date.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/logo.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/module_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/module_1.png -------------------------------------------------------------------------------- /WebRoot/images/common/module_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/module_2.png -------------------------------------------------------------------------------- /WebRoot/images/common/module_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/module_3.png -------------------------------------------------------------------------------- /WebRoot/images/common/month.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/month.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/nav_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/nav_hide.png -------------------------------------------------------------------------------- /WebRoot/images/common/nav_item_minus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/nav_item_minus.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/nav_item_plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/nav_item_plus.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/nav_item_v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/nav_item_v.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/nav_item_v_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/nav_item_v_hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/common/nav_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/nav_show.png -------------------------------------------------------------------------------- /WebRoot/images/common/page_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/page_close.png -------------------------------------------------------------------------------- /WebRoot/images/common/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/common/user.jpg -------------------------------------------------------------------------------- /WebRoot/images/login/btn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/login/btn.jpg -------------------------------------------------------------------------------- /WebRoot/images/login/btn_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/login/btn_hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/login/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/login/login.png -------------------------------------------------------------------------------- /WebRoot/images/xngzf/ht01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/xngzf/ht01.jpeg -------------------------------------------------------------------------------- /WebRoot/images/xngzf/ht02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/images/xngzf/ht02.jpeg -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 学生成绩管理系统 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 |
33 | 34 | 35 | 欢迎${manage.username }使用本系统 36 | 37 |
38 | 39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /WebRoot/kc/kcadd.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 40 | 41 | 42 | 43 | <%@ include file="../left.jsp" %> 44 | 45 | 46 | 47 |
48 | 49 | 50 | 51 |
52 | 56 |
57 |
58 | 59 |
60 | 61 | 62 | 63 | 64 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 81 | 82 | 83 |
课程名称: 65 | 66 | 67 |
操作: 76 | 77 |       78 | 79 | 80 |
84 |
85 | 86 |
87 |
88 | 89 | 90 |
91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /WebRoot/kc/kclist.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 82 | 83 |
${biaoti }
39 | 40 |
41 | 42 |      43 | 课程名称: 44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 62 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
课程名称操作
60 | ${bean.kcname }  61 | 63 | 查看       64 | 65 | 删除 66 |
${pagerinfo }
80 | 81 |
84 | 85 | 86 |
87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /WebRoot/kc/kcshow.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 29 | 30 | 31 | 32 | <%@ include file="../left.jsp" %> 33 | 34 | 35 | 36 |
37 | 38 | 39 | 40 |
41 | 45 |
46 |
47 | 48 |
49 | 50 | 51 | 52 | 55 | 59 | 60 | 61 | 62 | 63 | 64 | 69 | 70 | 71 |
53 | 课程名称: 54 | 56 | 57 | 58 |
操作: 65 | 66 | 67 | 68 |
72 |
73 | 74 |
75 |
76 | 77 | 78 |
79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /WebRoot/left.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | 4 |
5 |
6 | 7 |
8 |
9 | 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 | -------------------------------------------------------------------------------- /WebRoot/login.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 学生成绩管理系统 12 | 13 | 14 | 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 | 62 | -------------------------------------------------------------------------------- /WebRoot/password.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 学生成绩管理系统 13 | 14 | 15 | 16 | 17 | 18 | 19 | <%@ include file="head.jsp" %> 20 | 21 | 22 | 56 | 57 | 58 | 59 | <%@ include file="left.jsp" %> 60 | 61 | 62 | 63 |
64 | 65 | 66 | 67 |
68 | 72 |
73 |
74 | 75 |
76 | 77 | 78 | 79 | 82 | 86 | 87 | 88 | 89 | 92 | 96 | 97 | 98 | 99 | 102 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 118 | 119 | 120 |
80 | 原密码: 81 | 83 | 84 | 85 |
90 | 新密码: 91 | 93 | 94 | 95 |
100 | 确认新密码: 101 | 103 | 104 | 105 |
操作: 113 | 114 |       115 | 116 | 117 |
121 |
122 | 123 |
124 |
125 | 126 | 127 |
128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My97DatePicker 5 | 6 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/config.js: -------------------------------------------------------------------------------- 1 | var langList = 2 | [ 3 | {name:'en', charset:'UTF-8'}, 4 | {name:'zh-cn', charset:'gb2312'}, 5 | {name:'zh-tw', charset:'GBK'} 6 | ]; 7 | 8 | var skinList = 9 | [ 10 | {name:'default', charset:'gb2312'}, 11 | {name:'whyGreen', charset:'gb2312'} 12 | ]; -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/lang/zh-cn.js -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/lang/zh-tw.js -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/skin/default/datepicker.css -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /WebRoot/scripts/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/plugins/iframeTools.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * artDialog iframeTools 3 | * Date: 2011-12-08 1:32 4 | * http://code.google.com/p/artdialog/ 5 | * (c) 2009-2011 TangBin, http://www.planeArt.cn 6 | * 7 | * This is licensed under the GNU LGPL, version 2.1 or later. 8 | * For details, see: http://creativecommons.org/licenses/LGPL/2.1/ 9 | */ 10 | eval(function(B,D,A,G,E,F){function C(A){return A<62?String.fromCharCode(A+=A<26?65:A<52?71:-4):A<63?'_':A<64?'$':C(A>>6)+C(A&63)}while(A>0)E[C(G--)]=D[--A];return B.replace(/[\w\$]+/g,function(A){return E[A]==F[A]?A:E[A]})}('(6(E,C,D,A){c B,X,W,J="@_.DATA",K="@_.OPEN",H="@_.OPENER",I=C.k=C.k||"@_.WINNAME"+(Bd Bo).Be(),F=C.VBArray&&!C.XMLHttpRequest;E(6(){!C.Bu&&7.BY==="B0"&&Br("9 Error: 7.BY === \\"B0\\"")});c G=D.d=6(){c W=C,X=6(A){f{c W=C[A].7;W.BE}u(X){v!V}v C[A].9&&W.BE("frameset").length===U};v X("d")?W=C.d:X("BB")&&(W=C.BB),W}();D.BB=G,B=G.9,W=6(){v B.BW.w},D.m=6(C,B){c W=D.d,X=W[J]||{};W[J]=X;b(B!==A)X[C]=B;else v X[C];v X},D.BQ=6(W){c X=D.d[J];X&&X[W]&&1 X[W]},D.through=X=6(){c X=B.BR(i,BJ);v G!==C&&(D.B4[X.0.Z]=X),X},G!==C&&E(C).BN("unload",6(){c A=D.B4,W;BO(c X BS A)A[X]&&(W=A[X].0,W&&(W.duration=U),A[X].s(),1 A[X])}),D.p=6(B,O,BZ){O=O||{};c N,L,M,Bc,T,S,R,Q,BF,P=D.d,Ba="8:BD;n:-Bb;d:-Bb;Bp:o U;Bf:transparent",BI="r:g%;x:g%;Bp:o U";b(BZ===!V){c BH=(Bd Bo).Be(),BG=B.replace(/([?&])W=[^&]*/,"$1_="+BH);B=BG+(BG===B?(/\\?/.test(B)?"&":"?")+"W="+BH:"")}c G=6(){c B,C,W=L.2.B2(".aui_loading"),A=N.0;M.addClass("Bi"),W&&W.hide();f{Q=T.$,R=E(Q.7),BF=Q.7.Bg}u(X){T.q.5=BI,A.z?N.z(A.z):N.8(A.n,A.d),O.j&&O.j.l(N,Q,P),O.j=By;v}B=A.r==="Bt"?R.r()+(F?U:parseInt(E(BF).Bv("marginLeft"))):A.r,C=A.x==="Bt"?R.x():A.x,setTimeout(6(){T.q.5=BI},U),N.Bk(B,C),A.z?N.z(A.z):N.8(A.n,A.d),O.j&&O.j.l(N,Q,P),O.j=By},I={w:W(),j:6(){N=i,L=N.h,Bc=L.BM,M=L.2,T=N.BK=P.7.Bn("BK"),T.Bx=B,T.k="Open"+N.0.Z,T.q.5=Ba,T.BX("frameborder",U,U),T.BX("allowTransparency",!U),S=E(T),N.2().B3(T),Q=T.$;f{Q.k=T.k,D.m(T.k+K,N),D.m(T.k+H,C)}u(X){}S.BN("BC",G)},s:6(){S.Bv("4","o").unbind("BC",G);b(O.s&&O.s.l(i,T.$,P)===!V)v!V;M.removeClass("Bi"),S[U].Bx="about:blank",S.remove();f{D.BQ(T.k+K),D.BQ(T.k+H)}u(X){}}};Bq O.Y=="6"&&(I.Y=6(){v O.Y.l(N,T.$,P)}),Bq O.y=="6"&&(I.y=6(){v O.y.l(N,T.$,P)}),1 O.2;BO(c J BS O)I[J]===A&&(I[J]=O[J]);v X(I)},D.p.Bw=D.m(I+K),D.BT=D.m(I+H)||C,D.p.origin=D.BT,D.s=6(){c X=D.m(I+K);v X&&X.s(),!V},G!=C&&E(7).BN("mousedown",6(){c X=D.p.Bw;X&&X.w()}),D.BC=6(C,D,B){B=B||!V;c G=D||{},H={w:W(),j:6(A){c W=i,X=W.0;E.ajax({url:C,success:6(X){W.2(X),G.j&&G.j.l(W,A)},cache:B})}};1 D.2;BO(c F BS G)H[F]===A&&(H[F]=G[F]);v X(H)},D.Br=6(B,A){v X({Z:"Alert",w:W(),BL:"warning",t:!U,BA:!U,2:B,Y:!U,s:A})},D.confirm=6(C,A,B){v X({Z:"Confirm",w:W(),BL:"Bm",t:!U,BA:!U,3:U.V,2:C,Y:6(X){v A.l(i,X)},y:6(X){v B&&B.l(i,X)}})},D.prompt=6(D,B,C){C=C||"";c A;v X({Z:"Prompt",w:W(),BL:"Bm",t:!U,BA:!U,3:U.V,2:["",D,"","","",""].join(""),j:6(){A=i.h.2.B2("Bl")[U],A.select(),A.BP()},Y:6(X){v B&&B.l(i,A.B1,X)},y:!U})},D.tips=6(B,A){v X({Z:"Tips",w:W(),title:!V,y:!V,t:!U,BA:!V}).2(""+B+"").time(A||V.B6)},E(6(){c A=D.dragEvent;b(!A)v;c B=E(C),X=E(7),W=F?"BD":"t",H=A.prototype,I=7.Bn("e"),G=I.q;G.5="4:o;8:"+W+";n:U;d:U;r:g%;x:g%;"+"cursor:move;filter:alpha(3=U);3:U;Bf:#FFF",7.Bg.B3(I),H.Bj=H.Bs,H.BV=H.Bz,H.Bs=6(){c E=D.BP.h,C=E.BM[U],A=E.2[U].BE("BK")[U];H.Bj.BR(i,BJ),G.4="block",G.w=D.BW.w+B5,W==="BD"&&(G.r=B.r()+"a",G.x=B.x()+"a",G.n=X.scrollLeft()+"a",G.d=X.scrollTop()+"a"),A&&C.offsetWidth*C.offsetHeight>307200&&(C.q.BU="hidden")},H.Bz=6(){c X=D.BP;H.BV.BR(i,BJ),G.4="o",X&&(X.h.BM[U].q.BU="visible")}})})(i.art||i.Bu,i,i.9)','P|R|T|U|V|W|0|1|_|$|ok|id|px|if|var|top|div|try|100|DOM|this|init|name|call|data|left|none|open|style|width|close|fixed|catch|return|zIndex|height|cancel|follow|config|delete|content|opacity|display|cssText|function|document|position|artDialog|ARTDIALOG|contentWindow|lock|parent|load|absolute|getElementsByTagName|S|Y|Z|a|arguments|iframe|icon|main|bind|for|focus|removeData|apply|in|opener|visibility|_end|defaults|setAttribute|compatMode|O|Q|9999em|X|new|getTime|background|body|padding|aui_state_full|_start|size|input|question|createElement|Date|border|typeof|alert|start|auto|jQuery|css|api|src|null|end|BackCompat|value|find|appendChild|list|3|5'.split('|'),109,122,{},{})) -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 3 | * artDialog skin 4 | * http://code.google.com/p/artdialog/ 5 | * (c) 2009-2011 TangBin, http://www.planeArt.cn 6 | * 7 | * This is licensed under the GNU LGPL, version 2.1 or later. 8 | * For details, see: http://creativecommons.org/licenses/LGPL/2.1/ 9 | */ 10 | 11 | /* common start */ 12 | body { _margin:0; _height:100%; /*IE6 BUG*/ } 13 | .aui_outer { text-align:left; } 14 | table.aui_border, table.aui_dialog { border:0; margin:0; border-collapse:collapse; width:auto; } 15 | .aui_nw, .aui_n, .aui_ne, .aui_w, .aui_c, .aui_e, .aui_sw, .aui_s, .aui_se, .aui_header, .aui_tdIcon, .aui_main, .aui_footer { padding:0; } 16 | .aui_header, .aui_buttons button { font: 12px/1.11 'Microsoft Yahei', Tahoma, Arial, Helvetica, STHeiti; _font-family:Tahoma,Arial,Helvetica,STHeiti; -o-font-family: Tahoma, Arial; } 17 | .aui_title { overflow:hidden; text-overflow: ellipsis; } 18 | .aui_state_noTitle .aui_title { display:none; } 19 | .aui_close { display:block; position:absolute; text-decoration:none; outline:none; _cursor:pointer; } 20 | .aui_close:hover { text-decoration:none; } 21 | .aui_main { text-align:center; min-width:9em; min-width:0\9/*IE8 BUG*/; } 22 | .aui_content { display:inline-block; *zoom:1; *display:inline; text-align:left; border:none 0; } 23 | .aui_content.aui_state_full { display:block; width:100%; margin:0; padding:0!important; height:100%; } 24 | .aui_loading { width:96px; height:32px; text-align:left; text-indent:-999em; overflow:hidden; background:url(icons/loading.gif) no-repeat center center; } 25 | .aui_icon { vertical-align: middle; } 26 | .aui_icon div { width:48px; height:48px; margin:10px 0 10px 10px; background-position: center center; background-repeat:no-repeat; } 27 | .aui_buttons { padding:8px; text-align:right; white-space:nowrap; } 28 | .aui_buttons button { margin-left:15px; padding: 6px 8px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; *padding:4px 10px; *height:2em; letter-spacing:2px; font-family: Tahoma, Arial/9!important; width:auto; overflow:visible; *width:1; color: #333; border: solid 1px #999; border-radius: 5px; background: #DDD; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#DDDDDD'); background: linear-gradient(top, #FFF, #DDD); background: -moz-linear-gradient(top, #FFF, #DDD); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#DDD)); text-shadow: 0px 1px 1px rgba(255, 255, 255, 1); box-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 -1px 0 rgba(0, 0, 0, .09); -moz-transition:-moz-box-shadow linear .2s; -webkit-transition: -webkit-box-shadow linear .2s; transition: box-shadow linear .2s; } 29 | .aui_buttons button::-moz-focus-inner{ border:0; padding:0; margin:0; } 30 | .aui_buttons button:focus { outline:none 0; border-color:#426DC9; box-shadow:0 0 8px rgba(66, 109, 201, .9); } 31 | .aui_buttons button:hover { color:#000; border-color:#666; } 32 | .aui_buttons button:active { border-color:#666; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DDDDDD', endColorstr='#FFFFFF'); background: linear-gradient(top, #DDD, #FFF); background: -moz-linear-gradient(top, #DDD, #FFF); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDD), to(#FFF)); box-shadow:inset 0 1px 5px rgba(66, 109, 201, .9), inset 0 1px 1em rgba(0, 0, 0, .3); } 33 | .aui_buttons button[disabled] { cursor:default; color:#666; background:#DDD; border: solid 1px #999; filter:alpha(opacity=50); opacity:.5; box-shadow:none; } 34 | button.aui_state_highlight { color: #FFF; border: solid 1px #1c6a9e; background: #2288cc; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); text-shadow: -1px -1px 1px #1c6a9e; } 35 | button.aui_state_highlight:hover { color:#FFF; border-color:#0F3A56; } 36 | button.aui_state_highlight:active { border-color:#1c6a9e; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); } 37 | /* common end */ 38 | 39 | .aui_inner { background:#FFF; } 40 | .aui_titleBar { width:100%; height:0; position:relative; bottom:30px; _bottom:0; _margin-top:-30px; } 41 | .aui_title { height:29px; line-height:29px; padding:0 16px 0 0; _padding:0; color:#FFF; font-weight:700; text-shadow:1px 1px 0 rgba(0, 0, 0, .9); } 42 | .aui_nw, .aui_ne, .aui_sw, .aui_se, .aui_n, .aui_s, .aui_close { background-image:url(aero/aero_s.png); background-repeat:no-repeat; } 43 | .aui_nw { width:14px; height:34px; background-position: 0 0; _png:aero/ie6/aui_nw.png; } 44 | .aui_ne { width:14px; height:34px; background-position: -14px 0; _png:aero/ie6/aui_ne.png; } 45 | .aui_sw { width:14px; height:14px; background-position: 0 -34px; _png:aero/ie6/aui_sw.png; } 46 | .aui_se { width:14px; height:14px; background-position: -14px -34px; _png:aero/ie6/aui_se.png; } 47 | .aui_close { top:7px; right:0; _z-index:1; width:13px; height:13px; _font-size:0; _line-height:0; text-indent:-9999em; background-position:left -96px; _background:url(aero/ie6/aui_close.png); } 48 | .aui_close:hover { background-position:right -96px; _background:url(aero/ie6/aui_close.hover.png); } 49 | .aui_n, .aui_s { background-repeat:repeat-x; } 50 | .aui_n { background-position: 0 -48px; _png:aero/ie6/aui_n.png; } 51 | .aui_s { background-position: 0 -82px; _png:aero/ie6/aui_s.png; } 52 | .aui_w, .aui_e { background-image:url(aero/aero_s2.png); background-repeat:repeat-y; } 53 | .aui_w { background-position:left top; _png:aero/ie6/aui_w.png; } 54 | .aui_e { background-position: right bottom; _png:aero/ie6/aui_e.png; } 55 | .aui_state_noTitle .aui_nw, .aui_state_noTitle .aui_ne, .aui_state_noTitle .aui_sw, .aui_state_noTitle .aui_se { width:3px; height:3px; } 56 | .aui_state_noTitle .aui_inner { border:1px solid #666; background:#FFF; } 57 | .aui_state_noTitle .aui_outer { box-shadow:none; } 58 | .aui_state_noTitle .aui_nw, .aui_state_noTitle .aui_n, .aui_state_noTitle .aui_ne, .aui_state_noTitle .aui_w, .aui_state_noTitle .aui_e, .aui_state_noTitle .aui_sw, .aui_state_noTitle .aui_s, .aui_state_noTitle .aui_se { background:rgba(0, 0, 0, .05); background:#000\9!important; filter:alpha(opacity=5)!important; } 59 | .aui_state_noTitle .aui_titleBar { bottom:0; _bottom:0; _margin-top:0; } 60 | .aui_state_noTitle .aui_close { top:0; right:0; width:18px; height:18px; line-height:18px; text-align:center; text-indent:0; font-family: Helvetica, STHeiti; _font-family: '\u9ed1\u4f53', 'Book Antiqua', Palatino; font-size:18px; text-decoration:none; color:#214FA3; background:none; filter:!important; } 61 | .aui_state_noTitle .aui_close:hover, .aui_state_noTitle .aui_close:active { text-decoration:none; color:#900; } -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/aero_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/aero_s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/aero_s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/aero_s2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_close.hover.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_close.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_e.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_n.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_ne.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_nw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_se.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_sw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_title_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_title_icon.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/aero/ie6/aui_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/aero/ie6/aui_w.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/bg.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/bg2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/bg_css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/bg_css3.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/bg_css3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/bg_css3_2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/close.hover.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/close.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/e.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/n.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/ne.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/nw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/se.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/sw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/black/ie6/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/black/ie6/w.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/bg.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/bg2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/bg_css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/bg_css3.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/bg_css3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/bg_css3_2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/close.hover.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/close.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/e.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/n.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/ne.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/nw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/se.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/sw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/blue/ie6/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/blue/ie6/w.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/chrome.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 3 | * artDialog skin 4 | * http://code.google.com/p/artdialog/ 5 | * (c) 2009-2011 TangBin, http://www.planeArt.cn 6 | * 7 | * This is licensed under the GNU LGPL, version 2.1 or later. 8 | * For details, see: http://creativecommons.org/licenses/LGPL/2.1/ 9 | */ 10 | 11 | /* common start */ 12 | body { _margin:0; _height:100%; /*IE6 BUG*/ } 13 | .aui_outer { text-align:left; } 14 | table.aui_border, table.aui_dialog { border:0; margin:0; border-collapse:collapse; width:auto; } 15 | .aui_nw, .aui_n, .aui_ne, .aui_w, .aui_c, .aui_e, .aui_sw, .aui_s, .aui_se, .aui_header, .aui_tdIcon, .aui_main, .aui_footer { padding:0; } 16 | .aui_header, .aui_buttons button { font: 12px/1.11 'Microsoft Yahei', Tahoma, Arial, Helvetica, STHeiti; _font-family:Tahoma,Arial,Helvetica,STHeiti; -o-font-family: Tahoma, Arial; } 17 | .aui_title { overflow:hidden; text-overflow: ellipsis; } 18 | .aui_state_noTitle .aui_title { display:none; } 19 | .aui_close { display:block; position:absolute; text-decoration:none; outline:none; _cursor:pointer; } 20 | .aui_close:hover { text-decoration:none; } 21 | .aui_main { text-align:center; min-width:9em; min-width:0\9/*IE8 BUG*/; } 22 | .aui_content { display:inline-block; *zoom:1; *display:inline; text-align:left; border:none 0; } 23 | .aui_content.aui_state_full { display:block; width:100%; margin:0; padding:0!important; height:100%; } 24 | .aui_loading { width:96px; height:32px; text-align:left; text-indent:-999em; overflow:hidden; background:url(icons/loading.gif) no-repeat center center; } 25 | .aui_icon { vertical-align: middle; } 26 | .aui_icon div { width:48px; height:48px; margin:10px 0 10px 10px; background-position: center center; background-repeat:no-repeat; } 27 | .aui_buttons { padding:8px; text-align:right; white-space:nowrap; } 28 | .aui_buttons button { margin-left:15px; padding: 6px 8px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; *padding:4px 10px; *height:2em; letter-spacing:2px; font-family: Tahoma, Arial/9!important; width:auto; overflow:visible; *width:1; color: #333; border: solid 1px #999; border-radius: 5px; background: #DDD; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#DDDDDD'); background: linear-gradient(top, #FFF, #DDD); background: -moz-linear-gradient(top, #FFF, #DDD); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#DDD)); text-shadow: 0px 1px 1px rgba(255, 255, 255, 1); box-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 -1px 0 rgba(0, 0, 0, .09); -moz-transition:-moz-box-shadow linear .2s; -webkit-transition: -webkit-box-shadow linear .2s; transition: box-shadow linear .2s; } 29 | .aui_buttons button::-moz-focus-inner{ border:0; padding:0; margin:0; } 30 | .aui_buttons button:focus { outline:none 0; border-color:#426DC9; box-shadow:0 0 8px rgba(66, 109, 201, .9); } 31 | .aui_buttons button:hover { color:#000; border-color:#666; } 32 | .aui_buttons button:active { border-color:#666; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DDDDDD', endColorstr='#FFFFFF'); background: linear-gradient(top, #DDD, #FFF); background: -moz-linear-gradient(top, #DDD, #FFF); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDD), to(#FFF)); box-shadow:inset 0 1px 5px rgba(66, 109, 201, .9), inset 0 1px 1em rgba(0, 0, 0, .3); } 33 | .aui_buttons button[disabled] { cursor:default; color:#666; background:#DDD; border: solid 1px #999; filter:alpha(opacity=50); opacity:.5; box-shadow:none; } 34 | button.aui_state_highlight { color: #FFF; border: solid 1px #1c6a9e; background: #2288cc; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); text-shadow: -1px -1px 1px #1c6a9e; } 35 | button.aui_state_highlight:hover { color:#FFF; border-color:#0F3A56; } 36 | button.aui_state_highlight:active { border-color:#1c6a9e; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); } 37 | /* common end */ 38 | 39 | .aui_inner { background:#FFF; } 40 | .aui_titleBar { width:100%; height:0; position:relative; bottom:26px; _bottom:0; _margin-top:-26px;} 41 | .aui_title { height:26px; line-height:23px; padding:0 60px 0 5px; color:#FFF; font-weight:700; text-shadow:0 1px 0 #000; } 42 | .aui_nw, .aui_ne, .aui_w, .aui_e, .aui_sw, .aui_se, .aui_close { background-image:url(chrome/chrome_s.png); background-repeat:no-repeat; } 43 | .aui_nw { width:5px; height:26px; background-position: -46px -8px; } 44 | .aui_ne { width:5px; height:26px; background-position: -53px -8px; } 45 | .aui_w { background-position:-60px 0; background-repeat:repeat-y; } 46 | .aui_e { background-position:-65px 0; background-repeat:repeat-y; } 47 | .aui_sw { width:5px; height:5px; background-position: -46px -2px;} 48 | .aui_se { width:5px; height:5px; background-position: -53px -2px;} 49 | .aui_close { top:1px; right:0; width:44px; height:17px; background-position:0 0; _font-size:0; _line-height:0; text-indent:-9999em; } 50 | .aui_close:hover { background-position:0 -18px; } 51 | .aui_n, .aui_s { background-image:url(chrome/border.png); background-repeat:repeat-x; } 52 | .aui_n { background-position:0 top; } 53 | .aui_s { background-position: 0 bottom; } 54 | .aui_buttons { background-color:#F6F6F6; border-top:solid 1px #DADEE5; } 55 | .aui_state_noTitle .aui_nw, .aui_state_noTitle .aui_ne, .aui_state_noTitle .aui_sw, .aui_state_noTitle .aui_se { width:3px; height:3px; } 56 | .aui_state_noTitle .aui_inner { border:1px solid #666; background:#FFF; } 57 | .aui_state_noTitle .aui_outer { box-shadow:none; } 58 | .aui_state_noTitle .aui_nw, .aui_state_noTitle .aui_n, .aui_state_noTitle .aui_ne, .aui_state_noTitle .aui_w, .aui_state_noTitle .aui_e, .aui_state_noTitle .aui_sw, .aui_state_noTitle .aui_s, .aui_state_noTitle .aui_se { background:rgba(0, 0, 0, .05); background:#000\9!important; filter:alpha(opacity=5)!important; } 59 | .aui_state_noTitle .aui_titleBar { bottom:0; _bottom:0; _margin-top:0; } 60 | .aui_state_noTitle .aui_close { top:0; right:0; width:18px; height:18px; line-height:18px; text-align:center; text-indent:0; font-family: Helvetica, STHeiti; _font-family: '\u9ed1\u4f53', 'Book Antiqua', Palatino; font-size:18px; text-decoration:none; color:#214FA3; background:none; filter:!important; } 61 | .aui_state_noTitle .aui_close:hover, .aui_state_noTitle .aui_close:active { text-decoration:none; color:#900; } 62 | -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/chrome/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/chrome/border.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/chrome/chrome_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/chrome/chrome_s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/bg.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/bg2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/bg_css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/bg_css3.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/bg_css3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/bg_css3_2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/color_bg.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/close.hover.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/close.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/e.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/n.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/ne.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/nw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/se.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/sw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/green/ie6/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/green/ie6/w.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/error.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/face-sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/face-sad.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/face-smile.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/loading.gif -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/question.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/succeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/succeed.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/icons/warning.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/idialog_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/idialog_s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/idialog_s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/idialog_s2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_close.hover.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_close.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_e.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_n.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_ne.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_nw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_se.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_sw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/idialog/ie6/aui_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/idialog/ie6/aui_w.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_close.hover.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_close.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_e.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_n.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_ne.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_nw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_s.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_se.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_sw.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/ie6/aui_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/ie6/aui_w.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/s1.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/opera/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/WebRoot/scripts/artDialog/skins/opera/s2.png -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/simple.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 3 | * artDialog skin 4 | * http://code.google.com/p/artdialog/ 5 | * (c) 2009-2011 TangBin, http://www.planeArt.cn 6 | * 7 | * This is licensed under the GNU LGPL, version 2.1 or later. 8 | * For details, see: http://creativecommons.org/licenses/LGPL/2.1/ 9 | */ 10 | 11 | /* common start */ 12 | body { _margin:0; _height:100%; /*IE6 BUG*/ } 13 | .aui_outer { text-align:left; } 14 | table.aui_border, table.aui_dialog { border:0; margin:0; border-collapse:collapse; width:auto; } 15 | .aui_nw, .aui_n, .aui_ne, .aui_w, .aui_c, .aui_e, .aui_sw, .aui_s, .aui_se, .aui_header, .aui_tdIcon, .aui_main, .aui_footer { padding:0; } 16 | .aui_header, .aui_buttons button { font: 12px/1.11 'Microsoft Yahei', Tahoma, Arial, Helvetica, STHeiti; _font-family:Tahoma,Arial,Helvetica,STHeiti; -o-font-family: Tahoma, Arial; } 17 | .aui_title { overflow:hidden; text-overflow: ellipsis; } 18 | .aui_state_noTitle .aui_title { display:none; } 19 | .aui_close { display:block; position:absolute; text-decoration:none; outline:none; _cursor:pointer; } 20 | .aui_close:hover { text-decoration:none; } 21 | .aui_main { text-align:center; min-width:9em; min-width:0\9/*IE8 BUG*/; } 22 | .aui_content { display:inline-block; *zoom:1; *display:inline; text-align:left; border:none 0; } 23 | .aui_content.aui_state_full { display:block; width:100%; margin:0; padding:0!important; height:100%; } 24 | .aui_loading { width:96px; height:32px; text-align:left; text-indent:-999em; overflow:hidden; background:url(icons/loading.gif) no-repeat center center; } 25 | .aui_icon { vertical-align: middle; } 26 | .aui_icon div { width:48px; height:48px; margin:10px 0 10px 10px; background-position: center center; background-repeat:no-repeat; } 27 | .aui_buttons { padding:8px; text-align:right; white-space:nowrap; } 28 | .aui_buttons button { margin-left:15px; padding: 6px 8px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; *padding:4px 10px; *height:2em; letter-spacing:2px; font-family: Tahoma, Arial/9!important; width:auto; overflow:visible; *width:1; color: #333; border: solid 1px #999; border-radius: 5px; background: #DDD; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#DDDDDD'); background: linear-gradient(top, #FFF, #DDD); background: -moz-linear-gradient(top, #FFF, #DDD); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#DDD)); text-shadow: 0px 1px 1px rgba(255, 255, 255, 1); box-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 -1px 0 rgba(0, 0, 0, .09); -moz-transition:-moz-box-shadow linear .2s; -webkit-transition: -webkit-box-shadow linear .2s; transition: box-shadow linear .2s; } 29 | .aui_buttons button::-moz-focus-inner{ border:0; padding:0; margin:0; } 30 | .aui_buttons button:focus { outline:none 0; border-color:#426DC9; box-shadow:0 0 8px rgba(66, 109, 201, .9); } 31 | .aui_buttons button:hover { color:#000; border-color:#666; } 32 | .aui_buttons button:active { border-color:#666; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DDDDDD', endColorstr='#FFFFFF'); background: linear-gradient(top, #DDD, #FFF); background: -moz-linear-gradient(top, #DDD, #FFF); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDD), to(#FFF)); box-shadow:inset 0 1px 5px rgba(66, 109, 201, .9), inset 0 1px 1em rgba(0, 0, 0, .3); } 33 | .aui_buttons button[disabled] { cursor:default; color:#666; background:#DDD; border: solid 1px #999; filter:alpha(opacity=50); opacity:.5; box-shadow:none; } 34 | button.aui_state_highlight { color: #FFF; border: solid 1px #1c6a9e; background: #2288cc; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); text-shadow: -1px -1px 1px #1c6a9e; } 35 | button.aui_state_highlight:hover { color:#FFF; border-color:#0F3A56; } 36 | button.aui_state_highlight:active { border-color:#1c6a9e; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); } 37 | /* common end */ 38 | 39 | .aui_inner { background:#FFF; border:1px solid #666; } 40 | .aui_nw, .aui_ne, .aui_sw, .aui_se { width:3px; height:3px; } 41 | .aui_nw, .aui_n, .aui_ne, .aui_w, .aui_e, .aui_sw, .aui_s, .aui_se { background:rgba(0, 0, 0, .05); background:#000\9!important; filter:alpha(opacity=5); } 42 | .aui_titleBar { position:relative; height:100%; } 43 | .aui_title { position:absolute; top:0; left:0; width:100%; height:24px; text-indent:-9999em; overflow:hidden; font-size:0; } 44 | .aui_state_drag .aui_title { color:#666; } 45 | .aui_close { padding:0; top:0; right:0; width:18px; height:18px; line-height:18px; text-align:center; font-family: Helvetica, STHeiti; _font-family: '\u9ed1\u4f53', 'Book Antiqua', Palatino; font-size:18px; text-decoration:none; color:#214FA3; } 46 | .aui_close:hover, .aui_close:active { text-decoration:none; color:#900; } 47 | .aui_content { color:#666; } 48 | .aui_state_focus .aui_content { color:#000; } 49 | @media screen and (min-width:0) { 50 | .aui_close { width:20px; height:20px; line-height:20px; right:-10px; top:-10px; border-radius:20px; background:#999; color:#FFF; box-shadow:0 1px 3px rgba(0, 0, 0, .3); -moz-transition: linear .06s; -webkit-transition: linear .06s; transition: linear .06s; } 51 | .aui_close:hover { width:24px; height:24px; line-height:24px; right:-12px; top:-12px; color:#FFF; box-shadow:0 1px 3px rgba(209, 40, 42, .5); background:#d1282a; border-radius:24px; } 52 | .aui_state_lock .aui_dialog { box-shadow:0 3px 26px rgba(0, 0, 0, .9); -moz-transition:-moz-box-shadow linear .2s; -webkit-transition: -webkit-box-shadow linear .2s; transition: -webkit-box-shadow linear .2s; } 53 | .aui_dialog:active { box-shadow:0 0 5px rgba(0, 0, 0, .1)!important; } 54 | .aui_state_drag .aui_outer { box-shadow:none!important; } 55 | } 56 | -------------------------------------------------------------------------------- /WebRoot/scripts/artDialog/skins/twitter.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* 3 | * artDialog skin 4 | * http://code.google.com/p/artdialog/ 5 | * (c) 2009-2011 TangBin, http://www.planeArt.cn 6 | * 7 | * This is licensed under the GNU LGPL, version 2.1 or later. 8 | * For details, see: http://creativecommons.org/licenses/LGPL/2.1/ 9 | */ 10 | 11 | /* common start */ 12 | body { _margin:0; _height:100%; /*IE6 BUG*/ } 13 | .aui_outer { text-align:left; } 14 | table.aui_border, table.aui_dialog { border:0; margin:0; border-collapse:collapse; width:auto; } 15 | .aui_nw, .aui_n, .aui_ne, .aui_w, .aui_c, .aui_e, .aui_sw, .aui_s, .aui_se, .aui_header, .aui_tdIcon, .aui_main, .aui_footer { padding:0; } 16 | .aui_header, .aui_buttons button { font: 12px/1.11 'Microsoft Yahei', Tahoma, Arial, Helvetica, STHeiti; _font-family:Tahoma,Arial,Helvetica,STHeiti; -o-font-family: Tahoma, Arial; } 17 | .aui_title { overflow:hidden; text-overflow: ellipsis; } 18 | .aui_state_noTitle .aui_title { display:none; } 19 | .aui_close { display:block; position:absolute; text-decoration:none; outline:none; _cursor:pointer; } 20 | .aui_close:hover { text-decoration:none; } 21 | .aui_main { text-align:center; min-width:9em; min-width:0\9/*IE8 BUG*/; } 22 | .aui_content { display:inline-block; *zoom:1; *display:inline; text-align:left; border:none 0; } 23 | .aui_content.aui_state_full { display:block; width:100%; margin:0; padding:0!important; height:100%; } 24 | .aui_loading { width:96px; height:32px; text-align:left; text-indent:-999em; overflow:hidden; background:url(icons/loading.gif) no-repeat center center; } 25 | .aui_icon { vertical-align: middle; } 26 | .aui_icon div { width:48px; height:48px; margin:10px 0 10px 10px; background-position: center center; background-repeat:no-repeat; } 27 | .aui_buttons { padding:8px; text-align:right; white-space:nowrap; } 28 | .aui_buttons button { margin-left:15px; padding: 6px 8px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; *padding:4px 10px; *height:2em; letter-spacing:2px; font-family: Tahoma, Arial/9!important; width:auto; overflow:visible; *width:1; color: #333; border: solid 1px #999; border-radius: 5px; background: #DDD; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#DDDDDD'); background: linear-gradient(top, #FFF, #DDD); background: -moz-linear-gradient(top, #FFF, #DDD); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#DDD)); text-shadow: 0px 1px 1px rgba(255, 255, 255, 1); box-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 -1px 0 rgba(0, 0, 0, .09); -moz-transition:-moz-box-shadow linear .2s; -webkit-transition: -webkit-box-shadow linear .2s; transition: box-shadow linear .2s; } 29 | .aui_buttons button::-moz-focus-inner{ border:0; padding:0; margin:0; } 30 | .aui_buttons button:focus { outline:none 0; border-color:#426DC9; box-shadow:0 0 8px rgba(66, 109, 201, .9); } 31 | .aui_buttons button:hover { color:#000; border-color:#666; } 32 | .aui_buttons button:active { border-color:#666; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DDDDDD', endColorstr='#FFFFFF'); background: linear-gradient(top, #DDD, #FFF); background: -moz-linear-gradient(top, #DDD, #FFF); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDD), to(#FFF)); box-shadow:inset 0 1px 5px rgba(66, 109, 201, .9), inset 0 1px 1em rgba(0, 0, 0, .3); } 33 | .aui_buttons button[disabled] { cursor:default; color:#666; background:#DDD; border: solid 1px #999; filter:alpha(opacity=50); opacity:.5; box-shadow:none; } 34 | button.aui_state_highlight { color: #FFF; border: solid 1px #1c6a9e; background: #2288cc; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); text-shadow: -1px -1px 1px #1c6a9e; } 35 | button.aui_state_highlight:hover { color:#FFF; border-color:#0F3A56; } 36 | button.aui_state_highlight:active { border-color:#1c6a9e; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc'); background: linear-gradient(top, #33bbee, #2288cc); background: -moz-linear-gradient(top, #33bbee, #2288cc); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#33bbee), to(#2288cc)); } 37 | /* common end */ 38 | 39 | .aui_inner { background:rgba(0, 0, 0, .7); } 40 | .aui_dialog { background:#FFF; border-radius:3px; } 41 | .aui_outer { border:1px solid #000; border-radius:5px; box-shadow: 0 3px 0 rgba(0,0,0,0.1); -moz-transition:-moz-box-shadow linear .2s; -webkit-transition: -webkit-box-shadow linear .2s; transition: -webkit-box-shadow linear .2s; } 42 | .aui_state_lock .aui_outer { box-shadow:0 3px 26px rgba(0, 0, 0, .9); } 43 | .aui_outer:active { box-shadow:none!important; } 44 | .aui_state_drag .aui_outer { box-shadow:none!important; } 45 | .aui_border { border-radius:3px; } 46 | .aui_nw, .aui_ne { width:5px; height:37px; } 47 | .aui_sw, .aui_se { width:5px; height:5px; } 48 | .aui_nw, .aui_n, .aui_ne, .aui_w, .aui_e, .aui_sw, .aui_s, .aui_se { background:rgba(0, 0, 0, .7); background:#000\9!important; filter:alpha(opacity=70); } 49 | .aui_titleBar { width:100%; height:0; position:relative; bottom:33px; _bottom:0; _margin-top:-33px; } 50 | .aui_title { height:27px; line-height:27px; padding:0 16px 0 5px; color:#FFF; font-weight:700; text-shadow:0 1px 0 #000; } 51 | .aui_close { padding:0; top:2px; right:5px; width:21px; height:21px; line-height:21px; font-size:18px; text-align:center; color:#EBEBEB; font-family: Helvetica, STHeiti; _font-family: Tahoma, '\u9ed1\u4f53', 'Book Antiqua', Palatino; border:1px solid transparent; _border:0 none; background:#000; border-radius:15px; } 52 | .aui_state_drag .aui_close { color:#FFF; } 53 | .aui_close:hover { background:#C72015; border:1px solid #000; _border:0 none; box-shadow: 0 1px 0 rgba(255, 255, 255, .3), inset 0 1px 0 rgba(255, 255, 255, .3); } 54 | .aui_close:active { box-shadow: none; } 55 | .aui_state_noTitle { } 56 | .aui_content { color:#666; } 57 | .aui_state_noTitle .aui_nw, .aui_state_noTitle .aui_ne { height:5px; } 58 | .aui_state_noTitle .aui_titleBar { bottom:0; _bottom:0; _margin-top:0; } 59 | .aui_state_noTitle .aui_close { top:5px; } 60 | -------------------------------------------------------------------------------- /WebRoot/scripts/authority/commonAll.js: -------------------------------------------------------------------------------- 1 | /**菜单跳转**/ 2 | function rightMain(url){ 3 | $('#rightMain').attr('src', url); 4 | } 5 | 6 | /** 异步加载栋号列表 * */ 7 | function getFyDhListByFyXqCode() { 8 | var fyXq = $("#fyXq").val(); 9 | if (fyXq == "" || fyXq == null) { 10 | $("#fyDh").html(''); 11 | } else { 12 | /** 异步加载栋号列表 * */ 13 | $.ajax({ 14 | type : "POST", 15 | url : "getFyDhListByFyXqCode.action", 16 | data : { 17 | "fyXqCode" : fyXq 18 | }, 19 | dataType : "json", 20 | success : function(data) { 21 | // 如果返回数据不为空,更改“房源信息” 22 | if (data == null || data == '') {// 如果为空 23 | alert("该小区下暂无栋号列表,请联系\n管理员维护数据哦!!!"); 24 | $("#fyDh").html(''); 25 | } else { 26 | var str = ''; 27 | // 将返回的数据赋给zTree 28 | for (var i = 0; i < data.length; i++) { 29 | str += ''; 31 | } 32 | // alert(str); 33 | $("#fyDh").html(str); 34 | } 35 | } 36 | }); 37 | } 38 | } 39 | 40 | /* 41 | * 是否全选 42 | */ 43 | function selectOrClearAllCheckbox(obj) { 44 | var checkStatus = $(obj).attr("checked"); 45 | if (checkStatus == "checked") { 46 | $("input[type='checkbox']").attr("checked", true); 47 | } else { 48 | $("input[type='checkbox']").attr("checked", false); 49 | } 50 | } 51 | 52 | /** 日期函数,加几天,减几天 **/ 53 | function getNextDay(dd, dadd) { 54 | // 可以加上错误处理 55 | var a = new Date(dd); 56 | a = a.valueOf(); 57 | a = a + dadd * 24 * 60 * 60 * 1000; 58 | a = new Date(a); 59 | var m = a.getMonth() + 1; 60 | if (m.toString().length == 1) { 61 | m = '0' + m; 62 | } 63 | var d = a.getDate(); 64 | if (d.toString().length == 1) { 65 | d = '0' + d; 66 | } 67 | return a.getFullYear() + "-" + m + "-" + d; 68 | } 69 | 70 | /** table鼠标悬停换色* */ 71 | $(function() { 72 | // 如果鼠标移到行上时,执行函数 73 | 74 | 75 | 76 | $(".table tr").mouseover(function() { 77 | $(this).css({background : "#CDDAEB"}); 78 | $(this).children('td').each(function(index, ele){ 79 | $(ele).css({color: "#1D1E21"}); 80 | }); 81 | }).mouseout(function() { 82 | $(this).css({background : "#FFF"}); 83 | $(this).children('td').each(function(index, ele){ 84 | $(ele).css({color: "#909090"}); 85 | }); 86 | }); 87 | }); 88 | -------------------------------------------------------------------------------- /WebRoot/scripts/fancybox/jquery.easing-1.3.pack.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ 3 | * 4 | * Uses the built in easing capabilities added In jQuery 1.1 5 | * to offer multiple easing options 6 | * 7 | * TERMS OF USE - jQuery Easing 8 | * 9 | * Open source under the BSD License. 10 | * 11 | * Copyright © 2008 George McGinley Smith 12 | * All rights reserved. 13 | * 14 | * Redistribution and use in source and binary forms, with or without modification, 15 | * are permitted provided that the following conditions are met: 16 | * 17 | * Redistributions of source code must retain the above copyright notice, this list of 18 | * conditions and the following disclaimer. 19 | * Redistributions in binary form must reproduce the above copyright notice, this list 20 | * of conditions and the following disclaimer in the documentation and/or other materials 21 | * provided with the distribution. 22 | * 23 | * Neither the name of the author nor the names of contributors may be used to endorse 24 | * or promote products derived from this software without specific prior written permission. 25 | * 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 27 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 28 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 29 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 30 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 31 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 32 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 33 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 34 | * OF THE POSSIBILITY OF SUCH DAMAGE. 35 | * 36 | */ 37 | 38 | // t: current time, b: begInnIng value, c: change In value, d: duration 39 | eval(function(p,a,c,k,e,r){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('h.i[\'1a\']=h.i[\'z\'];h.O(h.i,{y:\'D\',z:9(x,t,b,c,d){6 h.i[h.i.y](x,t,b,c,d)},17:9(x,t,b,c,d){6 c*(t/=d)*t+b},D:9(x,t,b,c,d){6-c*(t/=d)*(t-2)+b},13:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t+b;6-c/2*((--t)*(t-2)-1)+b},X:9(x,t,b,c,d){6 c*(t/=d)*t*t+b},U:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t+1)+b},R:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t+b;6 c/2*((t-=2)*t*t+2)+b},N:9(x,t,b,c,d){6 c*(t/=d)*t*t*t+b},M:9(x,t,b,c,d){6-c*((t=t/d-1)*t*t*t-1)+b},L:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t+b;6-c/2*((t-=2)*t*t*t-2)+b},K:9(x,t,b,c,d){6 c*(t/=d)*t*t*t*t+b},J:9(x,t,b,c,d){6 c*((t=t/d-1)*t*t*t*t+1)+b},I:9(x,t,b,c,d){e((t/=d/2)<1)6 c/2*t*t*t*t*t+b;6 c/2*((t-=2)*t*t*t*t+2)+b},G:9(x,t,b,c,d){6-c*8.C(t/d*(8.g/2))+c+b},15:9(x,t,b,c,d){6 c*8.n(t/d*(8.g/2))+b},12:9(x,t,b,c,d){6-c/2*(8.C(8.g*t/d)-1)+b},Z:9(x,t,b,c,d){6(t==0)?b:c*8.j(2,10*(t/d-1))+b},Y:9(x,t,b,c,d){6(t==d)?b+c:c*(-8.j(2,-10*t/d)+1)+b},W:9(x,t,b,c,d){e(t==0)6 b;e(t==d)6 b+c;e((t/=d/2)<1)6 c/2*8.j(2,10*(t-1))+b;6 c/2*(-8.j(2,-10*--t)+2)+b},V:9(x,t,b,c,d){6-c*(8.o(1-(t/=d)*t)-1)+b},S:9(x,t,b,c,d){6 c*8.o(1-(t=t/d-1)*t)+b},Q:9(x,t,b,c,d){e((t/=d/2)<1)6-c/2*(8.o(1-t*t)-1)+b;6 c/2*(8.o(1-(t-=2)*t)+1)+b},P:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6-(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b},H:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d)==1)6 b+c;e(!p)p=d*.3;e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);6 a*8.j(2,-10*t)*8.n((t*d-s)*(2*8.g)/p)+c+b},T:9(x,t,b,c,d){f s=1.l;f p=0;f a=c;e(t==0)6 b;e((t/=d/2)==2)6 b+c;e(!p)p=d*(.3*1.5);e(a<8.w(c)){a=c;f s=p/4}m f s=p/(2*8.g)*8.r(c/a);e(t<1)6-.5*(a*8.j(2,10*(t-=1))*8.n((t*d-s)*(2*8.g)/p))+b;6 a*8.j(2,-10*(t-=1))*8.n((t*d-s)*(2*8.g)/p)*.5+c+b},F:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*(t/=d)*t*((s+1)*t-s)+b},E:9(x,t,b,c,d,s){e(s==u)s=1.l;6 c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},16:9(x,t,b,c,d,s){e(s==u)s=1.l;e((t/=d/2)<1)6 c/2*(t*t*(((s*=(1.B))+1)*t-s))+b;6 c/2*((t-=2)*t*(((s*=(1.B))+1)*t+s)+2)+b},A:9(x,t,b,c,d){6 c-h.i.v(x,d-t,0,c,d)+b},v:9(x,t,b,c,d){e((t/=d)<(1/2.k)){6 c*(7.q*t*t)+b}m e(t<(2/2.k)){6 c*(7.q*(t-=(1.5/2.k))*t+.k)+b}m e(t<(2.5/2.k)){6 c*(7.q*(t-=(2.14/2.k))*t+.11)+b}m{6 c*(7.q*(t-=(2.18/2.k))*t+.19)+b}},1b:9(x,t,b,c,d){e(t 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 64 | 65 | 66 | 67 | <%@ include file="../left.jsp" %> 68 | 69 | 70 | 71 |
72 | 73 | 74 | 75 |
76 | 80 |
81 |
82 | 83 |
84 | 85 | 86 | 87 | 90 | 93 | 94 | 95 | 96 | 97 | 98 | 101 | 104 | 105 | 106 | 107 | 110 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 125 | 128 | 129 | 130 | 131 | 132 | 133 | 136 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 160 | 161 | 162 |
88 | 用户名(学号): 89 | 91 | 92 |
99 | 姓名: 100 | 102 | 103 |
108 | 性别: 109 | 111 | 115 |
123 | 手机号码: 124 | 126 | 127 |
134 | 班级: 135 | 137 | 143 | 144 |
操作: 155 | 156 |       157 | 158 | 159 |
163 |
164 | 165 |
166 |
167 | 168 | 169 |
170 | 171 | 172 | 173 | -------------------------------------------------------------------------------- /WebRoot/user/userlist.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 104 | 105 |
${biaoti }
39 | 40 |
41 | 42 | 43 |         44 | 用户名: 45 | 姓名: 46 | 47 |
48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 68 | 71 | 74 | 77 | 80 | 83 | 84 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 |
用户名(学号)姓名密码班级手机号码性别操作
66 | ${bean.username }  67 | 69 | ${bean.truename }  70 | 72 | ${bean.password }  73 | 75 | ${bean.banji.bjname }  76 | 78 | ${bean.phone }  79 | 81 | ${bean.sex }  82 | 85 | 86 | 查看       87 | 修改       88 | 删除 89 |
${pagerinfo }
102 | 103 |
106 | 107 | 108 |
109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /WebRoot/user/userlist2.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 98 | 99 |
${biaoti }
39 | 40 |
41 | 42 | 43 | 学号: 44 | 姓名: 45 | 46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 67 | 70 | 73 | 76 | 79 | 80 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 |
学号姓名班级手机号码性别操作
65 | ${bean.username }  66 | 68 | ${bean.truename }  69 | 71 | ${bean.banji.bjname }  72 | 74 | ${bean.phone }  75 | 77 | ${bean.sex }  78 | 81 | 82 | 成绩管理       83 |
${pagerinfo }
96 | 97 |
100 | 101 | 102 |
103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /WebRoot/user/userlist3.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 24 | 25 | <%@ include file="../left.jsp" %> 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 90 | 91 |
${biaoti }
39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 61 | 64 | 67 | 70 | 73 | 76 | 77 | 81 | 82 | 83 | 84 | 85 | 86 | 87 |
用户名(学号)姓名密码班级手机号码性别操作
59 | ${bean.username }  60 | 62 | ${bean.truename }  63 | 65 | ${bean.password }  66 | 68 | ${bean.banji.bjname }  69 | 71 | ${bean.phone }  72 | 74 | ${bean.sex }  75 | 78 | 79 | 查看       80 |
88 | 89 |
92 | 93 | 94 |
95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /WebRoot/user/usershow.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 35 | 36 | 37 | 38 | <%@ include file="../left.jsp" %> 39 | 40 | 41 | 42 |
43 | 44 | 45 | 46 |
47 | 51 |
52 |
53 | 54 |
55 | 56 | 57 | 58 | 61 | 65 | 66 | 67 | 68 | 71 | 75 | 76 | 77 | 78 | 79 | 82 | 86 | 87 | 88 | 89 | 92 | 95 | 96 | 97 | 98 | 101 | 104 | 105 | 106 | 107 | 110 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 125 | 126 | 127 |
59 | 用户名(学号): 60 | 62 | 63 | 64 |
69 | 姓名: 70 | 72 | 73 | 74 |
80 | 密码: 81 | 83 | 84 | 85 |
90 | 性别: 91 | 93 | 94 |
99 | 班级: 100 | 102 | 103 |
108 | 手机号码: 109 | 111 | 112 |
操作: 121 | 122 | 123 | 124 |
128 |
129 | 130 |
131 |
132 | 133 | 134 |
135 | 136 | 137 | 138 | -------------------------------------------------------------------------------- /WebRoot/user/userupdate.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 | %> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 学生成绩管理系统 14 | 15 | 16 | 17 | 18 | 19 | 20 | <%@ include file="../head.jsp" %> 21 | 22 | 23 | 63 | 64 | 65 | 66 | <%@ include file="../left.jsp" %> 67 | 68 | 69 | 70 |
71 | 72 | 73 | 74 |
75 | 79 |
80 |
81 | 82 |
83 | 84 | 85 | 86 | 89 | 93 | 94 | 95 | 96 | 97 | 100 | 103 | 104 | 105 | 106 | 109 | 117 | 118 | 119 | 120 | 121 | 124 | 127 | 128 | 129 | 130 | 133 | 136 | 137 | 138 | 139 | 140 | 141 | 144 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 163 | 164 | 165 |
87 | 用户名(学号): 88 | 90 | 91 | 92 |
98 | 姓名: 99 | 101 | 102 |
107 | 班级: 108 | 110 | 116 |
122 | 手机号码: 123 | 125 | 126 |
131 | 密码 132 | 134 | 135 |
142 | 性别: 143 | 145 | 149 |
操作: 158 | 159 |       160 | 161 | 162 |
166 |
167 | 168 |
169 |
170 | 171 | 172 |
173 | 174 | 175 | 176 | -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No203StudentAchievementManagementSystem/94124850e94d00dbd9c7283ce78b0f9b2e2098a2/screenshot/9.png -------------------------------------------------------------------------------- /src/chengji/bean/Banji.java: -------------------------------------------------------------------------------- 1 | package chengji.bean; 2 | 3 | public class Banji { 4 | 5 | private int id;//主键 6 | 7 | private String bjname;//班级名称 8 | 9 | 10 | 11 | public String getBjname() { 12 | return bjname; 13 | } 14 | 15 | public void setBjname(String bjname) { 16 | this.bjname = bjname; 17 | } 18 | 19 | public int getId() { 20 | return id; 21 | } 22 | 23 | public void setId(int id) { 24 | this.id = id; 25 | } 26 | 27 | 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/chengji/bean/Chengji.java: -------------------------------------------------------------------------------- 1 | package chengji.bean; 2 | 3 | 4 | //成绩表 5 | 6 | public class Chengji { 7 | 8 | private int id;//主键 9 | 10 | private String fenshu;//分数 11 | 12 | private int kcid;//关联课程id 13 | 14 | private Kc kc;//关联课程实体 15 | 16 | private int userid;//关联学生id 17 | 18 | private User user;//关联学生实体 19 | 20 | public int getId() { 21 | return id; 22 | } 23 | 24 | public void setId(int id) { 25 | this.id = id; 26 | } 27 | 28 | public String getFenshu() { 29 | return fenshu; 30 | } 31 | 32 | public void setFenshu(String fenshu) { 33 | this.fenshu = fenshu; 34 | } 35 | 36 | public int getKcid() { 37 | return kcid; 38 | } 39 | 40 | public void setKcid(int kcid) { 41 | this.kcid = kcid; 42 | } 43 | 44 | public Kc getKc() { 45 | return kc; 46 | } 47 | 48 | public void setKc(Kc kc) { 49 | this.kc = kc; 50 | } 51 | 52 | public int getUserid() { 53 | return userid; 54 | } 55 | 56 | public void setUserid(int userid) { 57 | this.userid = userid; 58 | } 59 | 60 | public User getUser() { 61 | return user; 62 | } 63 | 64 | public void setUser(User user) { 65 | this.user = user; 66 | } 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | } 76 | -------------------------------------------------------------------------------- /src/chengji/bean/Kc.java: -------------------------------------------------------------------------------- 1 | package chengji.bean; 2 | 3 | public class Kc { 4 | 5 | private int id;//主键 6 | 7 | private String kcname;//课程名称 8 | 9 | public int getId() { 10 | return id; 11 | } 12 | 13 | public void setId(int id) { 14 | this.id = id; 15 | } 16 | 17 | public String getKcname() { 18 | return kcname; 19 | } 20 | 21 | public void setKcname(String kcname) { 22 | this.kcname = kcname; 23 | } 24 | 25 | 26 | 27 | 28 | } 29 | -------------------------------------------------------------------------------- /src/chengji/bean/User.java: -------------------------------------------------------------------------------- 1 | package chengji.bean; 2 | 3 | 4 | //用户 5 | 6 | public class User { 7 | 8 | private int id;//主键 9 | 10 | private String username;//用户名 11 | 12 | private String truename;//姓名 13 | 14 | private String sex;//性别 男 女 15 | 16 | private String password;//密码 17 | 18 | private String phone;//手机号码 19 | 20 | private String role;//用户角色 管理员 学生用户 21 | 22 | private int banjiid;//关联班级id 23 | 24 | private Banji banji;//关联班级实体 25 | 26 | public int getId() { 27 | return id; 28 | } 29 | 30 | public void setId(int id) { 31 | this.id = id; 32 | } 33 | 34 | public String getUsername() { 35 | return username; 36 | } 37 | 38 | public void setUsername(String username) { 39 | this.username = username; 40 | } 41 | 42 | public String getTruename() { 43 | return truename; 44 | } 45 | 46 | public void setTruename(String truename) { 47 | this.truename = truename; 48 | } 49 | 50 | public String getSex() { 51 | return sex; 52 | } 53 | 54 | public void setSex(String sex) { 55 | this.sex = sex; 56 | } 57 | 58 | public String getPassword() { 59 | return password; 60 | } 61 | 62 | public void setPassword(String password) { 63 | this.password = password; 64 | } 65 | 66 | public String getPhone() { 67 | return phone; 68 | } 69 | 70 | public void setPhone(String phone) { 71 | this.phone = phone; 72 | } 73 | 74 | public String getRole() { 75 | return role; 76 | } 77 | 78 | public void setRole(String role) { 79 | this.role = role; 80 | } 81 | 82 | public int getKcid() { 83 | return banjiid; 84 | } 85 | 86 | public void setKcid(int banjiid) { 87 | this.banjiid = banjiid; 88 | } 89 | 90 | public int getBanjiid() { 91 | return banjiid; 92 | } 93 | 94 | public void setBanjiid(int banjiid) { 95 | this.banjiid = banjiid; 96 | } 97 | 98 | public Banji getBanji() { 99 | return banji; 100 | } 101 | 102 | public void setBanji(Banji banji) { 103 | this.banji = banji; 104 | } 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | } 118 | -------------------------------------------------------------------------------- /src/chengji/dao/BanjiDao.java: -------------------------------------------------------------------------------- 1 | package chengji.dao; 2 | 3 | import java.sql.Connection; 4 | import java.sql.PreparedStatement; 5 | import java.sql.ResultSet; 6 | import java.util.ArrayList; 7 | import java.util.HashMap; 8 | import java.util.List; 9 | import java.util.Map; 10 | 11 | import chengji.bean.Banji; 12 | import chengji.util.DBConn; 13 | import chengji.util.Fenye; 14 | import chengji.util.Pager; 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | public class BanjiDao { 23 | 24 | 25 | //插入纪录 26 | public void insertBean(Banji bean){ 27 | Connection conn = null; 28 | PreparedStatement ps = null; 29 | try{ 30 | String sql = "insert into t_Banji(bjname) values(?)"; 31 | conn = DBConn.getConn(); 32 | ps = conn.prepareStatement(sql); 33 | ps.setString(1, bean.getBjname()); 34 | ps.executeUpdate(); 35 | }catch(Exception e){ 36 | e.printStackTrace(); 37 | }finally{ 38 | DBConn.close(conn, ps, null); 39 | } 40 | } 41 | 42 | //更新记录 43 | public void updateBean(Banji bean){ 44 | Connection conn = null; 45 | PreparedStatement ps = null; 46 | try{ 47 | String sql = "update t_Banji set banji=?" + 48 | " where id= "+bean.getId(); 49 | conn = DBConn.getConn(); 50 | ps = conn.prepareStatement(sql); 51 | ps.setString(1, bean.getBjname()); 52 | ps.executeUpdate(); 53 | }catch(Exception e){ 54 | e.printStackTrace(); 55 | }finally{ 56 | DBConn.close(conn, ps, null); 57 | } 58 | } 59 | 60 | //删除记录 61 | public void deleteBean(Banji bean){ 62 | Connection conn = null; 63 | PreparedStatement ps = null; 64 | try{ 65 | String sql = "delete from t_Banji where id="+bean.getId(); 66 | conn = DBConn.getConn(); 67 | ps = conn.prepareStatement(sql); 68 | ps.executeUpdate(); 69 | 70 | }catch(Exception e){ 71 | e.printStackTrace(); 72 | }finally{ 73 | DBConn.close(conn, ps, null); 74 | } 75 | } 76 | 77 | 78 | //按查询条件查询列表信息(支持分页) 79 | @SuppressWarnings("unchecked") 80 | public Map> getList(int pagenum,int pagesize ,String url,String where){ 81 | Connection conn = null; 82 | PreparedStatement ps = null; 83 | ResultSet rs = null; 84 | List list = new ArrayList(); 85 | try{ 86 | String sql = "SELECT * from t_Banji "+where ; 87 | conn = DBConn.getConn(); 88 | ps = conn.prepareStatement(sql); 89 | rs = ps.executeQuery(); 90 | while(rs!=null &&rs.next()){ 91 | Banji bean = new Banji(); 92 | bean.setId(rs.getInt("id")); 93 | bean.setBjname(rs.getString("bjname")); 94 | list.add(bean); 95 | } 96 | 97 | }catch(Exception e){ 98 | e.printStackTrace(); 99 | }finally{ 100 | DBConn.close(conn, ps, null); 101 | } 102 | int currentpage = pagenum; 103 | Fenye pm = new Fenye(list, pagesize); 104 | 105 | List fenyelist = pm.getObjects(currentpage); 106 | int total = list.size(); 107 | Map> map = new HashMap>(); 108 | map.put(Pager.getPagerNormal(total, pagesize, 109 | currentpage, url, "共有" + total + "条记录"), fenyelist); 110 | String pagerinfo = map.keySet().iterator().next(); 111 | List list2 = map.get(pagerinfo); 112 | if(list2==null){ 113 | map.remove(pagerinfo); 114 | map.put(pagerinfo, list); 115 | } 116 | 117 | 118 | return map; 119 | 120 | } 121 | 122 | @SuppressWarnings("unchecked") 123 | public List getList(String where ){ 124 | Connection conn = null; 125 | PreparedStatement ps = null; 126 | ResultSet rs = null; 127 | List list = new ArrayList(); 128 | try{ 129 | String sql = "SELECT * from t_Banji "+where ; 130 | conn = DBConn.getConn(); 131 | ps = conn.prepareStatement(sql); 132 | rs = ps.executeQuery(); 133 | while(rs!=null &&rs.next()){ 134 | Banji bean = new Banji(); 135 | bean.setId(rs.getInt("id")); 136 | bean.setBjname(rs.getString("bjname")); 137 | list.add(bean); 138 | } 139 | 140 | }catch(Exception e){ 141 | e.printStackTrace(); 142 | }finally{ 143 | DBConn.close(conn, ps, null); 144 | } 145 | 146 | 147 | return list; 148 | 149 | } 150 | 151 | 152 | //按查询条件查询记录信息 153 | public Banji selectBean(String where){ 154 | Connection conn = null; 155 | PreparedStatement ps = null; 156 | ResultSet rs = null; 157 | Banji bean =null; 158 | try{ 159 | String sql = "SELECT * from t_Banji "+where; 160 | conn = DBConn.getConn(); 161 | ps = conn.prepareStatement(sql); 162 | rs = ps.executeQuery(); 163 | while(rs!=null &&rs.next()){ 164 | bean = new Banji(); 165 | bean.setId(rs.getInt("id")); 166 | bean.setBjname(rs.getString("bjname")); 167 | } 168 | 169 | }catch(Exception e){ 170 | e.printStackTrace(); 171 | }finally{ 172 | DBConn.close(conn, ps, null); 173 | } 174 | return bean; 175 | } 176 | 177 | 178 | public int selectBeancount(String where){ 179 | Connection conn = null; 180 | PreparedStatement ps = null; 181 | ResultSet rs = null; 182 | int count = 0; 183 | try{ 184 | String sql = "SELECT count(*) from t_Banji "+where; 185 | conn = DBConn.getConn(); 186 | ps = conn.prepareStatement(sql); 187 | 188 | rs = ps.executeQuery(); 189 | if(rs!=null){ 190 | count = rs.getInt(1); 191 | } 192 | 193 | }catch(Exception e){ 194 | e.printStackTrace(); 195 | }finally{ 196 | DBConn.close(conn, ps, null); 197 | } 198 | return count; 199 | } 200 | 201 | 202 | } 203 | -------------------------------------------------------------------------------- /src/chengji/dao/ChengjiDao.java: -------------------------------------------------------------------------------- 1 | package chengji.dao; 2 | 3 | import java.sql.Connection; 4 | import java.sql.PreparedStatement; 5 | import java.sql.ResultSet; 6 | import java.util.ArrayList; 7 | import java.util.HashMap; 8 | import java.util.List; 9 | import java.util.Map; 10 | 11 | import chengji.bean.Chengji; 12 | import chengji.util.DBConn; 13 | import chengji.util.Fenye; 14 | import chengji.util.Pager; 15 | 16 | 17 | public class ChengjiDao { 18 | 19 | 20 | //插入纪录 21 | public void insertBean(Chengji bean){ 22 | Connection conn = null; 23 | PreparedStatement ps = null; 24 | try{ 25 | String sql = "insert into t_Chengji(fenshu,kcid,userid) " + 26 | "values(?,?,?)"; 27 | conn = DBConn.getConn(); 28 | ps = conn.prepareStatement(sql); 29 | ps.setString(1, bean.getFenshu()); 30 | ps.setInt(2, bean.getKcid()); 31 | ps.setInt(3, bean.getUserid()); 32 | ps.executeUpdate(); 33 | }catch(Exception e){ 34 | e.printStackTrace(); 35 | }finally{ 36 | DBConn.close(conn, ps, null); 37 | } 38 | } 39 | 40 | //更新记录 41 | public void updateBean(Chengji bean){ 42 | Connection conn = null; 43 | PreparedStatement ps = null; 44 | try{ 45 | String sql = "update t_Chengji set fenshu=?,kcid=?,userid=?" + 46 | " where id= "+bean.getId(); 47 | conn = DBConn.getConn(); 48 | ps = conn.prepareStatement(sql); 49 | ps.setString(1, bean.getFenshu()); 50 | ps.setInt(2, bean.getKcid()); 51 | ps.setInt(3, bean.getUserid()); 52 | ps.executeUpdate(); 53 | 54 | }catch(Exception e){ 55 | e.printStackTrace(); 56 | }finally{ 57 | DBConn.close(conn, ps, null); 58 | } 59 | } 60 | 61 | //删除记录 62 | public void deleteBean(Chengji bean){ 63 | Connection conn = null; 64 | PreparedStatement ps = null; 65 | try{ 66 | String sql = "delete from t_Chengji where id="+bean.getId(); 67 | conn = DBConn.getConn(); 68 | ps = conn.prepareStatement(sql); 69 | ps.executeUpdate(); 70 | 71 | }catch(Exception e){ 72 | e.printStackTrace(); 73 | }finally{ 74 | DBConn.close(conn, ps, null); 75 | } 76 | } 77 | 78 | 79 | //按查询条件查询列表信息(支持分页) 80 | @SuppressWarnings("unchecked") 81 | public Map> getList(int pagenum,int pagesize ,String url,String where){ 82 | Connection conn = null; 83 | PreparedStatement ps = null; 84 | ResultSet rs = null; 85 | List list = new ArrayList(); 86 | try{ 87 | String sql = "SELECT * from t_Chengji "+where ; 88 | conn = DBConn.getConn(); 89 | ps = conn.prepareStatement(sql); 90 | rs = ps.executeQuery(); 91 | while(rs!=null &&rs.next()){ 92 | Chengji bean = new Chengji(); 93 | bean.setId(rs.getInt("id")); 94 | bean.setFenshu(rs.getString("fenshu")); 95 | bean.setKcid(rs.getInt("kcid")); 96 | bean.setUserid(rs.getInt("userid")); 97 | KcDao kcDao = new KcDao(); 98 | bean.setKc(kcDao.selectBean("where id="+bean.getKcid())); 99 | UserDao userDao = new UserDao(); 100 | bean.setUser(userDao.selectBean("where id="+bean.getUserid())); 101 | list.add(bean); 102 | } 103 | 104 | }catch(Exception e){ 105 | e.printStackTrace(); 106 | }finally{ 107 | DBConn.close(conn, ps, null); 108 | } 109 | int currentpage = pagenum; 110 | Fenye pm = new Fenye(list, pagesize); 111 | 112 | List fenyelist = pm.getObjects(currentpage); 113 | int total = list.size(); 114 | Map> map = new HashMap>(); 115 | map.put(Pager.getPagerNormal(total, pagesize, 116 | currentpage, url, "共有" + total + "条记录"), fenyelist); 117 | String pagerinfo = map.keySet().iterator().next(); 118 | List list2 = map.get(pagerinfo); 119 | if(list2==null){ 120 | map.remove(pagerinfo); 121 | map.put(pagerinfo, list); 122 | } 123 | 124 | 125 | return map; 126 | 127 | } 128 | 129 | @SuppressWarnings("unchecked") 130 | public List getList(String where ){ 131 | Connection conn = null; 132 | PreparedStatement ps = null; 133 | ResultSet rs = null; 134 | List list = new ArrayList(); 135 | try{ 136 | String sql = "SELECT * from t_Chengji "+where ; 137 | conn = DBConn.getConn(); 138 | ps = conn.prepareStatement(sql); 139 | rs = ps.executeQuery(); 140 | while(rs!=null &&rs.next()){ 141 | Chengji bean = new Chengji(); 142 | bean.setId(rs.getInt("id")); 143 | bean.setFenshu(rs.getString("fenshu")); 144 | bean.setKcid(rs.getInt("kcid")); 145 | bean.setUserid(rs.getInt("userid")); 146 | KcDao kcDao = new KcDao(); 147 | bean.setKc(kcDao.selectBean("where id="+bean.getKcid())); 148 | UserDao userDao = new UserDao(); 149 | bean.setUser(userDao.selectBean("where id="+bean.getUserid())); 150 | list.add(bean); 151 | } 152 | 153 | }catch(Exception e){ 154 | e.printStackTrace(); 155 | }finally{ 156 | DBConn.close(conn, ps, null); 157 | } 158 | 159 | 160 | return list; 161 | 162 | } 163 | 164 | 165 | //按查询条件查询记录信息 166 | public Chengji selectBean(String where){ 167 | Connection conn = null; 168 | PreparedStatement ps = null; 169 | ResultSet rs = null; 170 | Chengji bean =null; 171 | try{ 172 | String sql = "SELECT * from t_Chengji "+where; 173 | conn = DBConn.getConn(); 174 | ps = conn.prepareStatement(sql); 175 | rs = ps.executeQuery(); 176 | while(rs!=null &&rs.next()){ 177 | bean = new Chengji(); 178 | bean.setId(rs.getInt("id")); 179 | bean.setFenshu(rs.getString("fenshu")); 180 | bean.setKcid(rs.getInt("kcid")); 181 | bean.setUserid(rs.getInt("userid")); 182 | KcDao kcDao = new KcDao(); 183 | bean.setKc(kcDao.selectBean("where id="+bean.getKcid())); 184 | UserDao userDao = new UserDao(); 185 | bean.setUser(userDao.selectBean("where id="+bean.getUserid())); 186 | } 187 | 188 | }catch(Exception e){ 189 | e.printStackTrace(); 190 | }finally{ 191 | DBConn.close(conn, ps, null); 192 | } 193 | return bean; 194 | } 195 | 196 | 197 | public int selectBeancount(String where){ 198 | Connection conn = null; 199 | PreparedStatement ps = null; 200 | ResultSet rs = null; 201 | int count = 0; 202 | try{ 203 | String sql = "SELECT count(*) from t_Chengji "+where; 204 | conn = DBConn.getConn(); 205 | ps = conn.prepareStatement(sql); 206 | 207 | rs = ps.executeQuery(); 208 | if(rs!=null){ 209 | count = rs.getInt(1); 210 | } 211 | 212 | }catch(Exception e){ 213 | e.printStackTrace(); 214 | }finally{ 215 | DBConn.close(conn, ps, null); 216 | } 217 | return count; 218 | } 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | } 233 | -------------------------------------------------------------------------------- /src/chengji/dao/KcDao.java: -------------------------------------------------------------------------------- 1 | package chengji.dao; 2 | 3 | import java.sql.Connection; 4 | import java.sql.PreparedStatement; 5 | import java.sql.ResultSet; 6 | import java.util.ArrayList; 7 | import java.util.HashMap; 8 | import java.util.List; 9 | import java.util.Map; 10 | 11 | import chengji.bean.Kc; 12 | import chengji.util.DBConn; 13 | import chengji.util.Fenye; 14 | import chengji.util.Pager; 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | public class KcDao { 23 | 24 | 25 | //插入纪录 26 | public void insertBean(Kc bean){ 27 | Connection conn = null; 28 | PreparedStatement ps = null; 29 | try{ 30 | String sql = "insert into t_Kc(kcname) " + 31 | "values(?)"; 32 | conn = DBConn.getConn(); 33 | ps = conn.prepareStatement(sql); 34 | ps.setString(1, bean.getKcname()); 35 | ps.executeUpdate(); 36 | }catch(Exception e){ 37 | e.printStackTrace(); 38 | }finally{ 39 | DBConn.close(conn, ps, null); 40 | } 41 | } 42 | 43 | //更新记录 44 | public void updateBean(Kc bean){ 45 | Connection conn = null; 46 | PreparedStatement ps = null; 47 | try{ 48 | String sql = "update t_Kc set kcname=?" + 49 | " where id= "+bean.getId(); 50 | conn = DBConn.getConn(); 51 | ps = conn.prepareStatement(sql); 52 | ps.setString(1, bean.getKcname()); 53 | ps.executeUpdate(); 54 | }catch(Exception e){ 55 | e.printStackTrace(); 56 | }finally{ 57 | DBConn.close(conn, ps, null); 58 | } 59 | } 60 | 61 | //删除记录 62 | public void deleteBean(Kc bean){ 63 | Connection conn = null; 64 | PreparedStatement ps = null; 65 | try{ 66 | String sql = "delete from t_Kc where id="+bean.getId(); 67 | conn = DBConn.getConn(); 68 | ps = conn.prepareStatement(sql); 69 | ps.executeUpdate(); 70 | 71 | }catch(Exception e){ 72 | e.printStackTrace(); 73 | }finally{ 74 | DBConn.close(conn, ps, null); 75 | } 76 | } 77 | 78 | 79 | //按查询条件查询列表信息(支持分页) 80 | @SuppressWarnings("unchecked") 81 | public Map> getList(int pagenum,int pagesize ,String url,String where){ 82 | Connection conn = null; 83 | PreparedStatement ps = null; 84 | ResultSet rs = null; 85 | List list = new ArrayList(); 86 | try{ 87 | String sql = "SELECT * from t_Kc "+where ; 88 | conn = DBConn.getConn(); 89 | ps = conn.prepareStatement(sql); 90 | rs = ps.executeQuery(); 91 | while(rs!=null &&rs.next()){ 92 | Kc bean = new Kc(); 93 | bean.setId(rs.getInt("id")); 94 | bean.setKcname(rs.getString("kcname")); 95 | list.add(bean); 96 | } 97 | 98 | }catch(Exception e){ 99 | e.printStackTrace(); 100 | }finally{ 101 | DBConn.close(conn, ps, null); 102 | } 103 | int currentpage = pagenum; 104 | Fenye pm = new Fenye(list, pagesize); 105 | 106 | List fenyelist = pm.getObjects(currentpage); 107 | int total = list.size(); 108 | Map> map = new HashMap>(); 109 | map.put(Pager.getPagerNormal(total, pagesize, 110 | currentpage, url, "共有" + total + "条记录"), fenyelist); 111 | String pagerinfo = map.keySet().iterator().next(); 112 | List list2 = map.get(pagerinfo); 113 | if(list2==null){ 114 | map.remove(pagerinfo); 115 | map.put(pagerinfo, list); 116 | } 117 | 118 | 119 | return map; 120 | 121 | } 122 | 123 | @SuppressWarnings("unchecked") 124 | public List getList(String where ){ 125 | Connection conn = null; 126 | PreparedStatement ps = null; 127 | ResultSet rs = null; 128 | List list = new ArrayList(); 129 | try{ 130 | String sql = "SELECT * from t_Kc "+where ; 131 | conn = DBConn.getConn(); 132 | ps = conn.prepareStatement(sql); 133 | rs = ps.executeQuery(); 134 | while(rs!=null &&rs.next()){ 135 | Kc bean = new Kc(); 136 | bean.setId(rs.getInt("id")); 137 | bean.setKcname(rs.getString("kcname")); 138 | list.add(bean); 139 | } 140 | 141 | }catch(Exception e){ 142 | e.printStackTrace(); 143 | }finally{ 144 | DBConn.close(conn, ps, null); 145 | } 146 | 147 | 148 | return list; 149 | 150 | } 151 | 152 | 153 | //按查询条件查询记录信息 154 | public Kc selectBean(String where){ 155 | Connection conn = null; 156 | PreparedStatement ps = null; 157 | ResultSet rs = null; 158 | Kc bean =null; 159 | try{ 160 | String sql = "SELECT * from t_Kc "+where; 161 | conn = DBConn.getConn(); 162 | ps = conn.prepareStatement(sql); 163 | rs = ps.executeQuery(); 164 | while(rs!=null &&rs.next()){ 165 | bean = new Kc(); 166 | bean.setId(rs.getInt("id")); 167 | bean.setKcname(rs.getString("kcname")); 168 | } 169 | 170 | }catch(Exception e){ 171 | e.printStackTrace(); 172 | }finally{ 173 | DBConn.close(conn, ps, null); 174 | } 175 | return bean; 176 | } 177 | 178 | 179 | public int selectBeancount(String where){ 180 | Connection conn = null; 181 | PreparedStatement ps = null; 182 | ResultSet rs = null; 183 | int count = 0; 184 | try{ 185 | String sql = "SELECT count(*) from t_Banji "+where; 186 | conn = DBConn.getConn(); 187 | ps = conn.prepareStatement(sql); 188 | 189 | rs = ps.executeQuery(); 190 | if(rs!=null){ 191 | count = rs.getInt(1); 192 | } 193 | 194 | }catch(Exception e){ 195 | e.printStackTrace(); 196 | }finally{ 197 | DBConn.close(conn, ps, null); 198 | } 199 | return count; 200 | } 201 | 202 | 203 | } 204 | -------------------------------------------------------------------------------- /src/chengji/util/DBConn.java: -------------------------------------------------------------------------------- 1 | package chengji.util; 2 | 3 | import java.sql.Connection; 4 | import java.sql.DriverManager; 5 | import java.sql.PreparedStatement; 6 | import java.sql.ResultSet; 7 | import java.sql.SQLException; 8 | public class DBConn { 9 | 10 | 11 | 12 | private static String url = "jdbc:mysql://localhost:3306/no203_sheji_db?characterEncoding=utf-8"; 13 | 14 | private static String username = "root"; 15 | 16 | private static String password = "123456"; 17 | 18 | private static String jdbc = "com.mysql.jdbc.Driver"; 19 | 20 | 21 | 22 | 23 | 24 | /** 25 | * 获得数据库的连接 26 | * @return 27 | */ 28 | public static Connection getConn() { 29 | Connection conn = null; 30 | try { 31 | Class.forName(jdbc); 32 | conn = DriverManager.getConnection 33 | (url,username,password); 34 | 35 | } catch (ClassNotFoundException e) { 36 | e.printStackTrace(); 37 | } catch (SQLException e) { 38 | e.printStackTrace(); 39 | } 40 | return conn; 41 | } 42 | 43 | //关闭数据库的连接 44 | public static void close(Connection conn,PreparedStatement ps,ResultSet rs){ 45 | if(rs!=null){ 46 | try{ 47 | rs.close(); 48 | }catch(Exception e){ 49 | 50 | } 51 | } 52 | 53 | if(ps!=null){ 54 | try{ 55 | ps.close(); 56 | }catch(Exception e){ 57 | 58 | } 59 | } 60 | 61 | if(conn!=null){ 62 | try{ 63 | conn.close(); 64 | }catch(Exception e){ 65 | 66 | } 67 | } 68 | 69 | 70 | 71 | 72 | } 73 | 74 | 75 | 76 | 77 | } 78 | -------------------------------------------------------------------------------- /src/chengji/util/Pager.java: -------------------------------------------------------------------------------- 1 | package chengji.util; 2 | 3 | /** 4 | * Title: Pager 5 | * Description: 分页工具 6 | */ 7 | public class Pager { 8 | 9 | //标准列表分页,用于后台 10 | public static String getPagerNormal(int total, int pagesize, int pagenum,String pageurl,String info) { 11 | int count = total / pagesize; 12 | if (total % pagesize > 0) { 13 | count++; 14 | } 15 | if(pageurl.indexOf("?")>-1){ 16 | pageurl = pageurl + "&"; 17 | }else{ 18 | pageurl = pageurl + "?"; 19 | } 20 | StringBuffer buf = new StringBuffer(); 21 | buf.append(info+"  "); 22 | buf.append(pagenum+"/"+ count +"  "); 23 | if (pagenum == 1) { 24 | buf.append("【首页】【上一页】  "); 25 | } else { 26 | buf.append("【首页】【上一页】"); 28 | } 29 | int bound1 = ((pagenum - 2) <= 0) ? 1 : (pagenum - 2); 30 | int bound2 = ((pagenum + 2) >= count) ? count : (pagenum + 2); 31 | for (int i = bound1; i <= bound2; i++) { 32 | if (i == pagenum) { 33 | buf.append("" + i 34 | + "  "); 35 | } else { 36 | buf.append("" + i 37 | + "  "); 38 | } 39 | } 40 | if (bound2 < count) { 41 | buf.append("..."); 42 | } 43 | if (pagenum == count||count==0) { 44 | buf.append("【下一页】【尾页】"); 45 | } else { 46 | buf.append("【下一页】【尾页】"); 49 | } 50 | return buf.toString(); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/chengji/util/Util.java: -------------------------------------------------------------------------------- 1 | package chengji.util; 2 | 3 | 4 | import java.text.ParseException; 5 | import java.text.SimpleDateFormat; 6 | import java.util.Date; 7 | 8 | public class Util { 9 | 10 | 11 | 12 | //获取当前系统时间 13 | public static Date parseTime(String s){ 14 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 15 | try { 16 | return sdf.parse(s); 17 | } catch (ParseException e) { 18 | // TODO Auto-generated catch block 19 | e.printStackTrace(); 20 | } 21 | return null; 22 | } 23 | 24 | 25 | //获取当前系统时间 26 | public static String getTime(){ 27 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 28 | Date date = new Date(); 29 | return sdf.format(date.getTime()); 30 | } 31 | 32 | //获取当前系统时间 33 | public static String getTime2(){ 34 | SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); 35 | Date date = new Date(); 36 | return sdf.format(date.getTime()); 37 | } 38 | 39 | } 40 | --------------------------------------------------------------------------------