📄 history.jsp
字号:
<%@ 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} ${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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -