⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cr.jsp

📁 Java网上考试系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>参加考试的人数</title>
<style type="text/css">
<!--
@import url("_notes/ccc");
-->
</style>
</head>

<body background="images/left_bottom.jpg">
<jsp:useBean id="adminBean" scope="page" class="exam.exam"/>
<%String sql="select count(*) as num from student where state=1 and power=1";
ResultSet rs=adminBean.executeQuery(sql);
rs.next();
int count=rs.getInt("num");
rs.close();
%>
<table width="216" height="181" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="136" valign="bottom">
<table width="190" height="40" border="1" align="center" cellpadding="1" cellspacing="1">
        <tr>
          <td width="123" class="ccc">缺席考试的人数为</td>
          <td width="54"><div align="center" class="ccc"><%=count%></div></td>
        </tr>
      </table>
      <table width="203" height="80" border="0" align="center" cellpadding="0" cellspacing="0">
        <tr>
          <td align="center"><a href="javascript:window.close()" class="ccc">|关闭窗口|</a></td>
        </tr>
      </table> </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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