?? f06c138a9413001e11008a579099ca20
字號:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ taglib prefix="bean" uri="http://struts.apache.org/tags-bean" %>
<%@ taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
<%@ taglib prefix="logic" uri="http://struts.apache.org/tags-logic" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>消息列表</title>
</head>
<body>
${user.username}你好!你收到的消息如下:<br>
<html:form action="delete.do" method="POST">
<table align="center" width="566" border="1" background="blue" >
<tr>
<td colspan ="2"><html:errors property="select"/>
</td>
</tr>
<tr>
<td align="center" colspan="2">未讀消息<br></td>
</tr>
<tr>
<td align="left"><input type="checkbox">選擇<br></td>
<td align="right"><font color="red">標題</font><br></td>
</tr>
<logic:iterate id="message" name="messages" scope="request" >
<logic:equal value="0" name="message" property="readed">
<tr>
<td align="left"><input type="checkbox">選擇<br></td>
<td align="right"><bean:write name="message" property="title"/></td>
</tr>
</logic:equal>
</logic:iterate>
<tr>
<td align="center" colspan="2">已讀消息<br></td>
</tr>
<tr>
<td align="left"><input type="checkbox">選擇<br></td>
<td align="right"><font color="red">標題</font><br></td>
</tr>
<logic:iterate id="message" name="messages" scope="request">
<logic:equal value="1" name="message" property="readed">
<tr>
<td align="left"><input type="checkbox">選擇<br></td>
<td align="right"> <bean:write name="message" property="title"/></td>
</tr>
</logic:equal>
</logic:iterate>
<tr>
<td align="right"><html:submit>刪除</html:submit></td>
<td><html:reset>重置</html:reset></td>
</tr>
</table>
</html:form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -