📄 default.jsp
字号:
<%@ page contentType="text/html; charset=GBK"%>
<%@ page import="java.sql.*" %>
<%@ page import="java.util.*" %>
<%@ page import="com.ntsky.persistence.*" %>
<%@ include file="check.jsp" %>
<%
/**
* <p>Title: NTsky新闻发布v1.0正式版</p>
* <p>Description: 管理员首页</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: NTsky</p>
* @authory 姚君林
* @version 1.0
*/
%>
<jsp:useBean id="guest" scope="page" class="com.ntsky.news.note.Guest"/>
<jsp:useBean id="Pagination" class="com.ntsky.common.Pagination"/>
<%-- 分页 --%>
<%
int curPages = Pagination.curPages(Pagination.strPage(request,"page"));
Pagination.setRows(5);//每页显示10条
int totalPages = Pagination.getPages(guest.sumNote());//取出总页数
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新技术天地</title>
<link rel="stylesheet" href="text.css" type="text/css">
</head>
<body leftMargin=0 topMargin=0 marginheight="0" marginwidth="0" bgcolor="#ffffff">
<br>
<div align="center">
<center>
<table align=center border=0 cellPadding=0 cellSpacing=0 width=630>
<tr>
<td width=134 height=37><IMG height=37 src="images/top_left.gif" width=134></td>
<td width="100%" background=images/top_middle.gif height=37 valign="middle">
<p align="left"><font color="#FFFFFF"><strong><%=user%></strong>欢迎进入管理</font>
<a href="removeSession.jsp"><font color="#FFFFFF">退出管理</font></a> <a href="user.jsp"><font color="#FFFFFF">修改资料</font></a></td>
<td width=49 height=37><IMG height=37 src="images/top_right.gif" width=49></td>
</tr>
</table>
</center>
</div>
<div align=center>
<center>
<table align=center border=0 cellPadding=0 cellSpacing=0 width=630 height=304>
<tr>
<td width=11 background="images/middle_left.gif" height=304> </td>
<td width=608 align="center" height=304>
<%if(guest.sumNote()==0){%>
对不起,还没有数据!
<%}else{%>
<table border="2" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#99BB99" width="90%" id="AutoNumber1" height="193">
<%
//Iterator rs = guest.listNote();
Iterator rs = Pagination.getPageSetNote(guest.listNote(),curPages);
//Iterator rs = Pagination.getPageSet(guest.listNote(),curPages);
int i=1;//变量获得每页显示的条数
while(rs.hasNext()){
NOTEGuest tableGuest = (NOTEGuest)rs.next();
%>
<tr>
<td width="100%" height="189">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="542" id="AutoNumber2" height="175">
<tr>
<td width="129" height="17" align="center"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="81%" id="AutoNumber3" height="140">
<tr>
<td width="100%" height="29"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="27">
<tr>
<td width="100%" height="27"> <p align="center"><%=tableGuest.getUserName()%></td>
</tr>
</table></td>
</tr>
<tr>
<td width="100%" height="107"> <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="116">
<tr>
<td width="100%" height="116"> <p align="center"><img src="<%=tableGuest.getImage()%>" width="84" height="95"></td>
</tr>
</table></td>
</tr>
</table></td>
<td width="1" height="15" rowspan="3" bgcolor="#99BB99"> </td>
<td width="7" height="15" rowspan="3" align="center" valign="top">
</td>
<td width="402" height="15" rowspan="3" align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="93%" id="AutoNumber4" height="167">
<tr>
<td width="100%" height="36"> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#99BB99" width="99%" id="AutoNumber5" height="27">
<tr>
<td width="100%" height="27" valign="middle">
留言主题:<%=tableGuest.getHeadTitle()%></td>
</tr>
</table></td>
</tr>
<tr>
<td width="100%" height="38"> <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#99BB99" width="99%" id="AutoNumber6" height="28">
<tr>
<td width="100%" height="28" background="images/note_bg.gif">
留言内容: <img border="0" src="images/time.gif" width="16" height="15">:日期 <%=tableGuest.getNoteTime()%></td>
</tr>
</table></td>
</tr>
<tr>
<td width="100%" height="54" align="center"> <table border="0" cellpadding="0" cellspacing="0" style="word-break:break-all" bordercolor="#111111" width="100%" height="54">
<tr>
<td width="100%" height="54" align="left" valign="top">
<table width="360" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="18"> <%=tableGuest.getContent()%></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<%
if(guest.isReply(tableGuest.getNoteId())){
%>
<tr>
<td width="100%" height="19" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="18">
<%
Iterator rs_reply = guest.listReply(tableGuest.getNoteId());
while(rs_reply.hasNext()){
NOTEReply tableReply = (NOTEReply)rs_reply.next();
%>
<tr>
<td width="60%" height="18"> <font color="#FF6600"><%=tableReply.getContent()%></font></td>
<td width="40%"><font color="#99BB99">回复时间:<%=tableReply.getReplyTime()%></font></td>
</tr>
<%}%>
</table></td>
</tr>
<%}%>
<tr>
<td width="100%" height="20"> <a href="<%=tableGuest.getUrl()%>" target="_blank"><img border="0" src="images/homepage.gif" width="45" height="16" alt="<%=tableGuest.getUrl()%>"></a> <a href="mailto:<%=tableGuest.getEmail()%>"><img border="0" src="images/email.gif" width="45" height="16" alt="<%=tableGuest.getEmail()%>"></a> <a href="http://search.tencent.com/cgi-bin/friend/user_show_info?ln=<%=tableGuest.getQq()%>" target="_blank"><img src="images/oicq.gif" width="45" height="16" alt="<%=tableGuest.getQq()%>" border="0" ></a>
<a href="delNote.jsp?noteId=<%=tableGuest.getNoteId()%>"><img border="0" src="images/delete.gif" width="45" height="16"></a> <a href="repNote.jsp?noteId=<%=tableGuest.getNoteId()%>"><img border="0" src="images/reply.gif" width="45" height="16"></a>
</td>
</tr>
</table></td>
</tr>
<tr>
<td width="129" height="18" align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="18">
<tr>
<td width="100%" height="18"> <p align="center"> <%=guest.sexStr(tableGuest.getSex())%></td>
</tr>
</table></td>
</tr>
<tr>
<td width="129" height="12" align="center" valign="top"> </td>
</tr>
</table>
</center>
</div>
</td>
</tr>
<%
i=i+1;
if(i>5)
break;
}
%>
</table>
<%}%>
<br>
<table border="2" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#009933" width="90%" id="AutoNumber7" height="1">
<tr>
<td width="100%" height="1" background="images/bg_top.gif" align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber8" height="29">
<tr>
<td width="76%" height="29" valign="middle">
<p align="right">
第<%=curPages%>页 共<%=totalPages%>页
<%if(curPages>1){%>
<a href="index.jsp?page=<%=curPages-1%>">上一页</a>
<%}%>
<%if(curPages<totalPages){%>
<a href="index.jsp?page=<%=curPages+1%>">下一页</a>
<%}%>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width=11 background="images/middle_left.gif" height=304> </td>
</tr>
</table>
</center>
</div>
<div align=center>
<center>
<table border=0 cellpadding=0 cellspacing=0 width=630>
<tr>
<td width=133 height=72><IMG height=72 src="images/bottom_left.gif" width=133></td>
<TD width="100%" background=images/bottom_middle.gif height=72>
<font color="#FFFFFF">All Rights Reserved.Copyleft © 2001-2003
<a href="http://www.ntsky.com"><font color="#FFFFFF">www.NTsky.com</font></a></font><a href="http://www.ntsky.com"><font color="#FFFFFF">
</font></a> <font color="#FFFFFF">程序制作:<a href="mailto:lovehere2@163.net"><font color="#FFFFFF">白鹰</font></a></font></TD>
<td width=22 height=72><IMG height=72 src="images/bottom_right.gif" width=22></td>
</tr>
</table>
</center>
</div>
</body>
</html></textarea>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -