⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uncommandwordlistright.jsp

📁 这个是完整的wap项目的源码 开发语言 Java 系统架构 Struts + hibernate + spring 数据库 Mysql5.0 应用服务器Tomcat5.0 开发工具 MyEc
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import="com.longtime.wap.model.UncommandWord" %>
<%@ page import="java.util.List" %>
<%@ 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"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested"%>
<%@ taglib uri="/page-tag" prefix="page"%>
<html:form action="uncommandWordList.do?method=listUncommandWord" styleId="listUncommandWord" method="post" onsubmit="return false;">
	<TABLE width="98%" align="center" class="TableBack">
			<th colspan="3" align="left">过滤字符列表</th>
			<tr>
				<td colspan="3" align="right">
					<table width="100%" class="TableBack">
						<tr>
							<td align="right">
								<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 align="right">
								<input type="button" name="button" value="新增过滤字符" onclick="formSubmit('listUncommandWord', 'module/cellphone/uncommandWordEdit.do?method=getUncommandWord&type=new')">&nbsp;
				     			<input type="button" value="删除" name="delete" onClick="recordDelete('deleteUncommandWordIds', 'listUncommandWord', 'module/cellphone/uncommandWordList.do?method=deleteUncommandWords')">&nbsp;
			    			</td>
			    		</tr>
						<logic:notEmpty name="wap_global_messages" scope="request">
						<tr>
							<TD colspan="2">
								<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>
						</tr>
						</logic:notEmpty>
					</table>
				</td>
			</tr>
			<TR>
				<TD colspan="3">
					<TABLE align="center" border="1" width="100%" id="filterInformation" class="TableBack2">
						<TR>
							<th>过滤字符</th>
							<th>添加时间</th>
							<th>查看</th>
							<th>编辑</th>
							<th><input type="checkbox" onClick="allCheck('filterInformation','4')"></th>
						</TR>
						<%
							if (null != request.getAttribute("uncommandWords")){
								List uncommandWords = (List)request.getAttribute("uncommandWords");
								for (int i = 0; i < uncommandWords.size(); i++) {
									UncommandWord uncommandWord = (UncommandWord)uncommandWords.get(i);
						%>
						<tr>
							<TD align="left">
								&nbsp;&nbsp;&nbsp;<%=uncommandWord.getWord()%>
							</TD>
							<TD align="center">
								<%=uncommandWord.getCreateDate()%>
							</TD>
							<TD align="center">
								<a href="javascript:formSubmit('listUncommandWord', 'module/cellphone/uncommandWordEdit.do?method=getUncommandWord&type=view&id=<%=uncommandWord.getUncommandWordId()%>')" class="href">查看</a>
							</TD>
							<TD align="center">
								<a href="javascript:formSubmit('listUncommandWord', 'module/cellphone/uncommandWordEdit.do?method=getUncommandWord&type=edit&id=<%=uncommandWord.getUncommandWordId()%>')" class="href">编辑</a>
							</TD>
							<TD align="center">
								<input type="checkbox" id="deleteUncommandWordIds" name="deleteUncommandWordIds" value="<%=uncommandWord.getUncommandWordId()%>" />
							</TD>
						</tr>
						<%			
								}
							}
						%>
					</TABLE>
				</TD>
			</TR>
			<TR>
			<td class="tborder"></td>
			<td>
				<page:page_tag formName="listUncommandWord" action="module/cellphone/uncommandWordList.do?method=listUncommandWord"/>
			</td>
			<td class="tborder"></td>
		</TR>
			<tr><td colspan="3" class="tborder"></td></tr>
		</TABLE>
</html:form>

⌨️ 快捷键说明

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