📄 look_sigletext.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ taglib uri="struts-bean" prefix="bean" %>
<%@ taglib uri="struts-logic" prefix="logic"%>
<%
String title="";
String hrefpath="";
String action=request.getParameter("from");
if(action==null||action.equals(""))
action="get";
pageContext.setAttribute("action",action);
if(action.equals("send")){
title="查看发件箱中的发文!";
hrefpath="/text/text_look_send.do";
}
if(action.equals("get")){
title="查看收件箱中的发文!";
hrefpath="/text/text_look_get.do";
}
%>
<html>
<head>
<html:base/>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=title%></title>
</head>
<body>
<center>
<table width="967" border="1" cellpadding="0" cellspacing="0" bordercolor="gray" bordercolorlight="gray" bordercolordark="white">
<tr>
<td colspan=2 align=center height=100 vliagn=top>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><jsp:include page="/top.jsp"/></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width=100>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><jsp:include page="/side.jsp"/></td>
</tr>
</table>
</td>
<td align="center" valign="top" width=900 background="<%=request.getContextPath()%>/image/right_round.jpg">
<br>
<br>
<table width="70%" border="1" cellspacing="-1" cellpadding="2" bordercolor=black bordercolorlight=black bordercolordark=white>
<tr align="center" bgcolor="#DFE5F5">
<td height="25" colspan="2"><b><%=title %></td>
</tr>
<html:form action="/text/text_sigle_look.do">
<tr>
<td height="30" align="right" bgcolor="#DFE5F5">发文主题:</td>
<td height="30"><html:text property="subject" style="border:0" readonly="true"/></td>
</tr>
<tr>
<logic:equal value="get" name="action">
<td width="30%" height="30" align="right" bgcolor="#DFE5F5">发件人:</td>
<td width="68%" height="30"><html:text property="sender" style="border:0" size="45" readonly="true"/></td>
</logic:equal>
<logic:equal value="send" name="action">
<td width="30%" height="30" align="right" bgcolor="#DFE5F5">收件人:</td>
<td width="68%" height="30"><html:text property="geter" style="border:0" size="45" readonly="true"/></td>
</logic:equal>
</tr>
<tr>
<td align="right" bgcolor="#DFE5F5">发送时间:</td>
<td align="left" valign="baseline"><html:text property="sendtime" style="border:0" readonly="true"/></td>
</tr>
<tr>
<td rowspan="2" align="right" valign="top" bgcolor="#DFE5F5">发文内容:</td>
<td align="left" valign="baseline"><html:textarea property="content" style="border:0" rows="7" cols="50" readonly="true"/></td>
</tr>
</html:form>
</table>
<table><tr height="30"><td align="center"><a href="<%=request.getContextPath()%><%=hrefpath%>?page=<%=session.getAttribute("currentpage")%>">[返回]</a></td></tr></table>
</td>
<tr>
<td colspan="2"><jsp:include page="/end.jsp"/></td>
</tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -