index.jsp

来自「JSP华源网校+西部软件JSP版」· JSP 代码 · 共 41 行

JSP
41
字号
<%@ taglib prefix="mt" uri="/WEB-INF/technologic.tld" %>
<%@ page contentType="text/html; charset=gb2312" %>
<html>
<head>
<title>精彩文章管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="hover.css" type="text/css">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<table border="0" cellspacing="1" cellpadding="2">
  <tr> 
    <th>分类名称</th>
    <th>文章数目</th>
    <th colspan="2">执行操作</th>
  </tr>
  <mt:CategoryList>
  <tr> 
    <td><%= categoryName %></td>
    <td><%= categoryArticleCount %></td>
    <td><a href="category.jsp?categoryID=<%= categoryID %>">浏览</a></td>
    <td><a href="deletecategory.jsp?categoryID=<%= categoryID %>">删除</a></td>
  </tr>
  </mt:CategoryList>
</table>
<ul>
  <li>添加分类:
    <form name="form1" method="post" action="newcategory.jsp">
      分类名称: 
      <input type="text" name="categoryName" size="20">
      <br>
      分类说明: 
      <textarea name="categoryComment" cols="60" rows="5"></textarea>
      <br>
      <input type="submit" value="  添    加  ">
    </form>
  </li>
</ul>
</body>
</html>

⌨️ 快捷键说明

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