userSend.jsp
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1.  <%@ page language="java" contentType="text/html;charset=UTF-8"
  2.  session="true" errorPage="err.jsp" %>
  3.  <table width="99%" border="0" align="center" cellpadding="2" cellspacing="1" class="tab">
  4. <form name="Gforms" id="Gforms" method="post" action="">
  5. <tr align="center" class="tr">
  6. <td width="32" height="24"><strong>状态</strong></td>
  7. <td width="100"><strong>收件人</strong></td>
  8. <td width="*"><strong>标题</strong></td>
  9. <td width="126"><strong>时间</strong></td>
  10. <td width="30"><strong>发送</strong></td>
  11. <td width="30"><strong>操作</strong></td>
  12. </tr>
  13. <%
  14. cms.setCmIsSend(true);
  15. cms.setCmSendID(gvUserID);
  16. int totalPage = cms.sendCount();
  17. ///out.print(totalPage);
  18. %>
  19. <c:forEach var="ms" items="<%=cms.sendList(iPage,25)%>">
  20. <tr class="tab2"><td align="center">
  21. <club:message type="htmlIsSend" bea="${ms.cmIsSend}"/>
  22. </td>
  23. <td align="center">
  24. <club:users type="userName" idIs="${ms.cmTakeID}" value="${ms.cmTakeUser}"/>
  25. </td>
  26. <td>
  27. <club:message type="topic" idIs="${ms.cmID}" linkId="${ms.cmReID}" value="${ms.cmTopic}" property="<%=act%>"/>
  28. </td>
  29. <td align="center">
  30. <span class="smallTxt">
  31. <club:message type="datetime"  value="${ms.cmAddTime}"/>
  32. </span>
  33. </td>
  34. <td align="center">
  35. <club:message type="htmlSendImg" idIs="${ms.cmID}" />
  36. </td>
  37. <td align="center">
  38. <club:message type="htmlCheckbox" idIs="${ms.cmID}" />
  39. </td>
  40. </tr>
  41. </c:forEach>
  42. <tr class="tab3">
  43. <td height="25" colspan="5" align="right">
  44. <span style="float:left">
  45. <strong>工具箱图例:</strong>&nbsp;&nbsp;<img src="GVimgs/userBox/lookyes.gif" />已发送
  46. &nbsp;&nbsp;
  47. <img src="GVimgs/userBox/lookno.gif" />未发送
  48. </span>
  49. <input name="gvSubmit" type="submit" value="确定删除" class="btn"/>全(反)选
  50. </td>
  51. <td height="25" align="center">
  52. <input name="chkall" type="checkbox" id="chkall" value="on" onclick="checkAll(this.form)"/>
  53. </td>
  54. </tr>
  55. </form>
  56. </table>
  57. <table width="99%"  border="0" align="center" cellpadding="0" cellspacing="0">
  58. <tr><td>
  59. <%=OutPrint.pageJump(totalPage,25, iPage, "userBox.jsp?act="+act+"&")%>
  60. </td></tr>
  61. </table>