mysend.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:5k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8" %>
  2. <%@ include file="../inc/nocache.jsp"%>
  3. <%@ page import="com.redmoon.oa.message.*"%>
  4. <%@ page import="java.util.*"%>
  5. <%@ page import="cn.js.fan.db.*"%>
  6. <html>
  7. <head>
  8. <title>消息中心</title>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <LINK href="../common.css" type=text/css rel=stylesheet>
  11. </head>
  12. <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  13. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  14. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/><%
  15. if (!privilege.isUserLogin(request))
  16. { %>
  17. <table width="320" border="0" cellspacing="0" cellpadding="0" align="center" class="9black">
  18.   <tr> 
  19.     <td><li>您的登录已过期,请重新登录,如果不是会员请先注册。</td>
  20.   </tr>
  21. </table>
  22. <% } 
  23. String name = privilege.getUser(request);
  24. %>
  25. <table width="320" border="0" cellspacing="1" cellpadding="3" align="center" bgcolor="#99CCFF" class="9black" height="260">
  26.   <tr> 
  27.     <td bgcolor="#CEE7FF" height="23">
  28.         <div align="center"><b>发 件 箱</b></div>
  29.     </td>
  30.   </tr>
  31.   <tr> 
  32.     <td bgcolor="#FFFFFF" height="50"> 
  33.         <table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
  34.           <tr> 
  35.             <td width="75"> 
  36.               <div align="center"><a href="message.jsp?page=1"><img src="images/inboxpm.gif" width="40" height="40" border="0"></a></div>
  37.             </td>
  38.             <td width="75"> 
  39.               <div align="center"><img src="images/m_outbox.gif" width="40" height="40" border="0"></div>
  40.             </td>
  41.             <td width="75"> 
  42.               <div align="center"><a href="send.jsp"><img src="images/newpm.gif" width="40" height="40" border="0"></a></div>
  43.             </td>
  44.             <td width="75"> 
  45.               <div align="center"> <img src="images/m_delete.gif" width="40" height="40"></div>
  46.             </td>
  47.           </tr>
  48.         </table>
  49.     </td>
  50.   </tr>
  51.   <tr> 
  52.       <td bgcolor="#FFFFFF" height="152" valign="top">
  53.   <table width="100%"  border="0" cellspacing="0" cellpadding="0">
  54.   <form name="form1" method="post" action="delmsg.jsp">
  55.         <tr>
  56.           <td><%
  57. MessageDb md = new MessageDb();
  58.   
  59. String sql = "select id from oa_message where sender="+StrUtil.sqlstr(name)+" order by isreaded asc,rq desc";
  60. int pagesize = 5;
  61. Paginator paginator = new Paginator(request);
  62. int curpage = paginator.getCurPage();
  63. int total = md.getObjectCount(sql);
  64. paginator.init(total, pagesize);
  65. //设置当前页数和总页数
  66. int totalpages = paginator.getTotalPages();
  67. if (totalpages==0)
  68. {
  69. curpage = 1;
  70. totalpages = 1;
  71. }
  72. int id,type;
  73. String title="",sender="",receiver="",rq="";
  74. String bg = "";
  75. int i = 0;
  76. Iterator ir = md.list(sql, (curpage-1)*pagesize, curpage*pagesize-1).iterator();
  77. while (ir.hasNext()) {
  78.         md = (MessageDb)ir.next(); 
  79.   i++;
  80.   id = md.getId();
  81.   title = md.getTitle();
  82.   sender = md.getSender();
  83.   receiver = md.getReceiver();
  84.   rq = md.getRq();
  85.   type = md.getType();
  86.  %>
  87.             <table width="300" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  88.               <%
  89.       if(i%2==0)
  90.    bg="#E6F7FF";
  91.   else
  92.    bg="#ffffff"; 
  93.    i++; %>
  94.               <tr bgcolor="<%=bg%>">
  95.                 <td >·<a href="showmsg.jsp?id=<%=id%>" class="9black2"> <%=title%></a> </td>
  96.                 <td width="54" ><div align="center">
  97.                     <%
  98.     switch(type) {
  99.      case 0:
  100.   { out.print("个人消息");
  101.     break; }
  102.  case 1:
  103.   { out.print("公共消息");
  104.     break; }
  105.  case 2:
  106.   { out.print("简历回复");
  107.     break; }
  108.  case 3:
  109.   { out.print("面试通知");
  110.                     break;}
  111. }
  112.   %>
  113.                 </div></td>
  114.               </tr>
  115.             </table>
  116.             <%}%></td>
  117.         </tr></form>
  118.       </table>
  119. <% if(paginator.getTotal()>0){ %>
  120.         <table width="310" border="0" cellspacing="0" cellpadding="0" align="center" class="p9" height="24">
  121.           <tr> 
  122.             <td height="24" valign="bottom"> <div align="right">共 <b><%=paginator.getTotal() %></b> 
  123.                 条 每页<b><%=paginator.getPageSize() %></b> 条 <b><%=curpage %>/<%=totalpages %></b>
  124.               </div>
  125.               <div align="right"> 
  126.                 <%
  127.   String querystr = "";
  128.     out.print(paginator.getCurPageBlock("mysend.jsp?"+querystr));
  129.   %>
  130. </div></td>
  131.           </tr>
  132.         </table>
  133.         <%}%>
  134.       </td>
  135.   </tr>
  136.   <tr> 
  137.     <td bgcolor="#CEE7FF" height="6"></td>
  138.   </tr>
  139. </table>
  140. </body>
  141. </html>