jsp

位置:IT落伍者 >> jsp >> 浏览文章

代码实例:JSP分页源程序


发布日期:2022年09月17日
 
代码实例:JSP分页源程序

<%@ page contentType="text/html; charset=gb" language="java"%>

<%@ page import = "javautil*"%>
<%@ page import = "javaio*"%>
<%@ page import = "javasql*"%>
<html>
<head>
<title>教师信息查询</title>
<style type="text/css">
<!
style {
fontfamily: "华文行楷";
color: #FFFFFF;
}
>
</style>
<link href="defaultcss" rel="stylesheet" type="text/css">
<style type="text/css">
<!
style {
color: #;
fontsize: px;
}
style {fontsize: px}
>
</style>
</head>
<body bgcolor="#ffffff">
<%sessiongetAttribute("a_name");%>
<h align="center" class="style style style">教师信息查询</h>
<hr />
<jsp:useBean id="tmessgeBean" scope="page" class="computersqlbean"/>
<table width="%" border="" cellpadding="" cellspacing="">
<tr align="center" bgcolor="#FFFF">
<td colspan="" bgcolor="#" class="style"><div align="right"><a href="indexhtml">返回首页</a></div></td>
</tr>
<tr align="center" bgcolor="#">
<td class="style">教号</td>
<td class="style">姓名</td>
<td class="style">系别</td>
<td class="style">专业</td>
<td class="style">操作选项</td>
</tr>
<%
requestsetCharacterEncoding("gb");
int nowPages;//当前页
int pages;//请求页数
int countPerPage = ; //每页显示条数
int pageCount;//总页数
int recordCount=tmessgeBeangetCounter("select count(*) from dysf_teacher ");

pageCount = (int)Mathceil((recordCount + countPerPage) / countPerPage);//算出总页数
if(requestgetParameter("pages") == null){

pages = ;
}else{
pages = new Integer(requestgetParameter("pages"))intValue();
}

上一篇:jsp如何解决Form表单乱码问题

下一篇:配置Web应用环境实现JSP留言簿开发