📄 discuss.jsp
字号:
<%@ taglib prefix="mt" uri="/WEB-INF/tech.tld" %>
<%@ page contentType="text/html; charset=gb2312" %>
<jsp:useBean id="article" scope="page" class="org.jetic.web.tech.Article" />
<jsp:setProperty name="article" property="*" />
<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">
<p>
<a href="./">精彩文章管理</a> ->
<a href="category.jsp?categoryID=<%= article.getCategoryID() %>"><%= article.getCategoryName() %></a> ->
<a href="article.jsp?articleID=<%= article.getArticleID() %>"><%= article.getArticleTitle() %></a> ->
网友相关讨论
<p/>
<table border="0" cellspacing="1" cellpadding="2">
<tr>
<th>网友</th>
<th>邮件</th>
<th>主页</th>
<th>题目</th>
<th>内容</th>
<th>时间</th>
<th>操作</th>
</tr>
<mt:DiscussList articleID="<%= article.getArticleID() %>">
<tr>
<td><%= discussNick %></td>
<td><%= discussEmail %></td>
<td><%= discussHomepage %></td>
<td><%= discussTitle %></td>
<td><%= discussContent %></td>
<td><%= discussTime %></td>
<td><a href="deletediscuss.jsp?discussID=<%= discussID %>">删除</a></td>
</tr>
</mt:DiscussList>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -