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

📄 article_special_admin_list.jsp

📁 jsp CMS全站 无可奈何花落去 士大夫
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<%@ taglib uri="/cms4j" prefix="cms4j" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<script src="../../js/common.js"></script>
<script src="../../js/page_init.js"></script>
<script src="js/article.js"></script>

<script>
//删除专题
function delArticleSpecialConfirm(){
	//如果用户选择了“取消”,则不执行操作
	if (window.confirm("您确定要删除此专题吗?删除操作,原此专题中的文章将设置为[无]专题,请慎重!"))
	{
		return true;
	}

	return false;
}

//清空专题
function clearArticleSpecialConfirm(){
	//如果用户选择了“取消”,则不执行操作
	if (window.confirm("您确定要清空此专题吗?清空操作,原此专题中的文章将设置为[无]专题,请慎重!"))
	{
		return true;
	}

	return false;
}

</script>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>CMS4J </title>
<link href="../skin/blue/css/oper_area.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="title-bar"><table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td width="26" class="title-bar-title-icon">&nbsp;</td>
        <td width="745" class="title-bar-text">专题 管理</td>
      </tr>
    </table></td>
  </tr>
</table>

<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" class="oper-bar">
  <tr>
    <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="25%" class="oper-bar-text">&nbsp;</td>
        <td width="35%" align="center" class="oper-bar-text">&nbsp;</td>
        <td width="40%" align="right" class="oper-bar-text"><span class="title_bar">
          <input name="Submit" type="button" class="form-buttun" onClick="location.href='article_special_add.jsp'" value="添加新专题">
        </span></td>
      </tr>
    </table></td>
  </tr>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" class="table-frame">
  <tr class="table_title">
    <td width="21%" height="15" class="table-titlebar">专题名称</td>
    <td width="19%" class="table-titlebar">专题别名(ID)</td>
    <td width="11%" class="table-titlebar">文章数</td>
    <td width="15%" class="table-titlebar">专题文章点击总数</td>
    <td width="25%" class="table-titlebar">操作</td>
  </tr>
  <cms4j:article_special state="all">
    <tr class="table_border_cell_bg" title="<%=special.getREMARK()%>">
      <td height="22" align="left" class="table-cell">&nbsp;<%=special.getNAME()%></td>
      <td height="22" align="center" class="table-cell"><%=special.getSPECIAL_ID()%></td>
      <td height="22" align="center" class="table-cell"><%=special.getArticleCount()%></td>
      <td height="22" align="center" class="table-cell"><%=special.getArticleClickCount()%></td>
      <td height="22" align="center" class="table-cell"><a href="article_special_modify.jsp?id=<%=special.getSPECIAL_ID()%>">设置</a> <a href="../../do?action=delArticleSpecial&id=<%=special.getSPECIAL_ID()%>"  onClick="return delArticleSpecialConfirm()">删除</a> <a href="../../do?action=clearArticleSpecial&id=<%=special.getSPECIAL_ID()%>"  onClick="return clearArticleSpecialConfirm()">清空</a> <a href="../../do?action=orderArticleSpecial&id=<%=special.getSPECIAL_ID()%>&type=up">↑升</a> <a href="../../do?action=orderArticleSpecial&id=<%=special.getSPECIAL_ID()%>&type=down">↓降</a></td>
    </tr>
  </cms4j:article_special>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" class="table_bottom_line">
  <tr>
    <td></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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