history.jsp

来自「基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+」· JSP 代码 · 共 20 行

JSP
20
字号
<%@ page language="java" pageEncoding="GBK" contentType="text/html; charset=GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<link href="${pageContext.request.contextPath}/style/oa.css" rel="stylesheet" type="text/css" />
<title>聊天记录</title>
<body onload="window.scroll(0,document.body.scrollHeight);">
<table border="0" width="100%" height="100%"/>
<tr>
<td colspan="1" >聊天记录</td>
</tr>
<logic:iterate id="list" name="history" scope="request">
<tr>
<TD>${list.csendtime}&nbsp;&nbsp;${list.send}对${list.recieve}说:<br>${list.ccontent}<br></TD>
</tr>
</logic:iterate>
</table>
<bean:write name="pagetool" scope="request" filter="false"/>
</body>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?