📄 index.jsp
字号:
<%@ include file="head.jsp"%>
<%@ page contentType="text/html;charset=GBK" import="java.sql.*" %>
<jsp:useBean id="Operate" scope="page" class="todb.Operate"/>
<%
ResultSet rs = null;
//获得结果集
rs = Operate.executeQuery("select * from board order by id desc limit 0,1");
%>
<html>
<head>
<title>无标题文档</title>
<style type="text/css">
<!--
body {
background-image: url(images/bg2.jpg);
}
.style1 {
font-size: x-large;
font-weight: bold;
}
-->
</style></head>
<body>
<table width="790" height="204" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="601" height="204">
<table width="100%" height="169" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="169"><div align="center" class="style1">端 正 考 风 严 肃 考 纪</div></td>
</tr>
</table>
<table width="277" height="32" border="0" align="right" cellpadding="0" cellspacing="0">
<tr>
<td width="149"><div align="center"><a href="stu/stu_logon.jsp">学生考试</a></div></td>
<td width="128"><div align="center"><a href="stu/query_logon.jsp">成绩查询</a></div></td>
<td width="128"><div align="center"><a href="teacher_login.jsp">教师管理</a></div></td>
</tr>
</table></td>
<td width="189" align="center" valign="top">
<table width="100%" height="204" border="0" align="right" cellpadding="0" cellspacing="5">
<tr>
<td height="194" valign="bottom" background="images/ggl.jpg">
<%
while(rs.next()){
%>
<table width="101%" height="141" border="0" cellpadding="0" cellspacing="3">
<tr>
<td height="22"><div align="center"><%=rs.getString("title")%></div></td>
</tr>
<tr>
<td height="74" align="left" valign="top"> <%=rs.getString("detail")%></td>
</tr>
<tr>
<td height="26"><div align="right"><%=rs.getString("inputdate")%></div></td>
</tr>
</table>
<%
}
rs.close();
%> </td>
</tr>
</table>
</td>
</tr>
</table>
<table width="790" height="50" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><hr noshade>
<div align="center">版权所有:湖北师范学院计算机科学系</div></td>
</tr>
</table>
<p> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -