discuss.jsp

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

JSP
40
字号
<%@ 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> -&gt;
  <a href="category.jsp?categoryID=<%= article.getCategoryID() %>"><%= article.getCategoryName() %></a> -&gt;
  <a href="article.jsp?articleID=<%= article.getArticleID() %>"><%= article.getArticleTitle() %></a> -&gt;
  网友相关讨论
<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 + =
减小字号Ctrl + -
显示快捷键?