📄 uncommandworddetailright.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<%@ page import="com.longtime.wap.module.cellphone.web.form.UncommandWordForm" %>
<table width="750" border="0" align="center" class="TableBack">
<html:hidden name="uncommandWordForm" property="uncommandWordId"/>
<html:hidden name="uncommandWordForm" property="editFlug"/>
<html:hidden name="uncommandWordForm" property="date"/>
<html:hidden name="uncommandWordForm" property="currentPage"/>
<%
UncommandWordForm uncommandWordForm = (UncommandWordForm) request
.getAttribute("uncommandWordForm");
String editFlug = uncommandWordForm.getEditFlug();
%>
<th colspan="3">
<%
if ("edit".equalsIgnoreCase(editFlug)) {
%>
更改过滤字符信息
<%
} else if ("view".equalsIgnoreCase(editFlug)){
%>
过滤字符信息
<%
} else {
%>
新建过滤字符信息
<%
}
%>
</th>
<tr>
<td class="tborder"></td>
<TD align="center">
<logic:notEmpty name="actionMessages" scope="request">
<logic:iterate id="message" name="actionMessages" scope="request">
<center>
<font color="red"><li>
<bean:write name="message" />
</li>
</font>
</center>
</logic:iterate>
</logic:notEmpty>
</TD>
<td class="tborder"></td>
</tr>
<logic:notEmpty name="wap_global_messages" scope="request">
<tr>
<td class="tborder"></td>
<TD colspan="2">
<br>
<br>
<logic:iterate id="message" name="wap_global_messages" scope="request">
<center>
<font color="red">
<li>
<bean:write name="message" />
</li>
</font>
</center>
</logic:iterate>
</TD>
<td class="tborder"></td>
</tr>
</logic:notEmpty>
<tr>
<td class="tborder"></td>
<td>
<br>
<br>
<br>
<table width="95%" align="center" border="0" class="TableBack">
<tr><td> </td><tr>
<tr>
<td align="center">
过滤字符 :
<%
if ("view".equalsIgnoreCase(editFlug)) {
%>
<bean:write name="uncommandWordForm" property="word"/>
<br>
<br>
<br>
<%
} else {
%>
<html:text property="word"></html:text> <FONT color="red">*</FONT> <html:errors property="word"/>
<%
}
%>
</td>
</tr>
<%
if ("view".equalsIgnoreCase(editFlug)) {
%>
<tr>
<td align="center">
添加时间 : <bean:write name="uncommandWordForm" property="date" />
</td>
</tr>
<%
}
%>
<tr><td> </td><tr>
</table>
<br>
<br>
<br>
</td>
<td class="tborder"></td>
</tr>
<tr>
<td class="tborder"></td>
<td align="center">
<%
if ("view".equalsIgnoreCase(editFlug)) {
%>
<input type="button" name="button" value="返回" onclick="formSubmit('uncommandWordForm', 'module/cellphone/uncommandWordList.do?method=listUncommandWord')">
<%
} else {
%>
<input type="submit" name="save" value="保存">
<input type="reset" name="reset" value="重置">
<input type="button" name="button" value="返回" onclick="formSubmit('uncommandWordForm', 'module/cellphone/uncommandWordList.do?method=listUncommandWord')">
<%
}
%>
</td>
<td class="tborder"></td>
</tr>
<tr>
<td colspan="3" class="tborder"></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -