CategoryManage.jsp~6~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:6k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- <%@ page contentType="text/html; charset=GBK" %>
- <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
- <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
- <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
- <html>
- <head>
- <title>NewsCategory</title>
- <script type="text/javascript">
- function SaveCategory(){
- var form = document.getElementById('categoryActionForm');
- var style = document.getElementById("hidStyle").value;
- if(document.getElementById("txtCatName").value == ""){
- alert("分类名没有填写");
- return false;
- }
- if(document.getElementById("txtOrder").value == ""){
- alert("分类排序顺序没有填写");
- return false;
- }
- form.action = "<%=request.getContextPath() %>/Manage/Category.do?todo=EditNewsCategory&style=" + style;
- }
- function DeleteCategory(count,catID){
- var form = document.getElementById('categoryActionForm');
- var style = document.getElementById("hidStyle").value;
- var v = Number(count);
- var Key = '<c:out value="${param.Key}" />';
- if(v == "0"){
- if(Key == ""){
- form.action = "<%=request.getContextPath() %>/Manage/Category.do?todo=DeleteCategory&Style=" + style + "&catID=" + catID;
- }else{
- form.action = "<%=request.getContextPath() %>/Manage/Category.do?todo=DeleteCategory&Key=" + Key + "&catID=" + catID;
- }
- form.submit();
- }else{
- alert("分类下有记录,必须将记录移到其他分类或删除后方可删除该分类");
- return false;
- }
- }
- </script>
- <link href="<%=request.getContextPath() %>/Manage/Css/skinv2.0.css" rel="stylesheet" type="text/css" />
- </head>
- <body bgcolor="#ffffff">
- <html:form method="post" action="/Manage/Category.do?todo=OpenCategoryByKey" enctype="multipart/form-data">
- <table cellspacing="0" cellpadding="0" width="100%" border="0">
- <tr bgcolor="#cfdbe8">
- <td style="WIDTH: 20px" width="20" bgcolor="#cfdbe8" height="19"> <img height="10" src="<%=request.getContextPath() %>/Manage/images/icon.gif" width="12" alt="" /></td>
- <td valign="middle" bgcolor="#cfdbe8" colspan="2"> 企业荣誉管理</td>
- </tr>
- <tr>
- <td style="HEIGHT: 31px" valign="top" align="left" height="80"> </td>
- <td style="HEIGHT: 31px" valign="middle" align="left" colspan="2">
- <img src="<%=request.getContextPath() %>/Manage/images/edit.gif" align="middle" alt="" /> 企业荣誉年份
- </td>
- </tr>
- <tr>
- <td style="HEIGHT: 1px" valign="top" align="left"></td>
- <td style="HEIGHT: 1px" valign="top" align="left" width="820" bgcolor="#cfdbe8"></td>
- <td style="HEIGHT: 1px; width: 144px;" valign="top" align="left"></td>
- </tr>
- <tr>
- <td style="HEIGHT: 381px" valign="top" align="left"></td>
- <td style="HEIGHT: 381px" valign="top" align="left" colspan="2">
- <br/>
- <table align="left" bgcolor="#cccccc" border="0" cellpadding="1" cellspacing="1" width="98%">
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 添加分类:
- </td>
- <td style="height: 23px">
- <input type="text" id="txtCatName" name="categoryName" value='<c:out value="${cat.cat_Name}" />' />
- <input type="submit" id="btnSaveCategory" value="保存" onclick="return SaveCategory();" />
- <input type="hidden" name="categoryID" value='<c:out value="${cat.cat_ID}" />' />
- <input type="hidden" id="hidStyle" name="style" value='<c:out value="${style}" />' />
- <input type="hidden" id="hidSuperior" name="superior" value='<c:out value="${superior}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 分类排序:
- </td>
- <td style="height: 23px">
- <input type="text" id="txtOrder" name="order" value='<c:out value="${cat.cat_Order}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 现有分类:
- </td>
- <td style="height: 23px">
- <table width="460" border="0" cellpadding="0" cellspacing="0" class="table_Left">
- <tr>
- <td height="25" width="200" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>分类名</strong></td>
- <td width="100" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>记录数</strong></td>
- <td width="160" align="center" bgcolor="#5983B0" class="STYLE1 table_Right"><strong>操作</strong></td>
- </tr>
- </table>
- <div id="divList">
- <c:forEach var="cat" items="${list}" varStatus="status">
- <table width="460" border="0" cellpadding="0" cellspacing="0" class="table_Left">
- <tr>
- <td width="200" class="table_Right" height="25">
- <c:out value="${cat.cat_Name}" />
- </td>
- <td width="100" class="table_Right">
- <c:out value="${cat.newsCount}" />
- </td>
- <td width="160" align="center" class="table_Right">
- <a href='<%=request.getContextPath() %>/Manage/'>编辑</a>
- |
- <a href='javascript:DeleteCategory(<c:out value="${cat.newsCount}" />,<c:out value="${cat.cat_ID}" />)'>删除</a>
- |
- <a href='<%=request.getContextPath() %>/Manage/News.do?todo=OpenNewsList&CatID=<c:out value="${cat.cat_ID}" />'>信息</a>
- </td>
- </tr>
- </table>
- </c:forEach>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </html:form>
- </body>
- </html>