📄 index.jsp
字号:
<%@ taglib prefix="mt" uri="/WEB-INF/tech.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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -