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

📄 getnote.jsp

📁 jsp+servlet网上购物,是一个实现mvc的网站
💻 JSP
字号:
<%-- 
    Document   : getNote
    Created on : 2008-12-8, 19:14:35
    Author     : 隆科
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
      <link href="1.css" type="text/css" rel="stylesheet">
        <title>留言版</title>
    </head>
    <body>
      
      
        <div id="container">
	<div id="banner">
		   <%@include file="head.jsp"%>
	</div>
	<div id="leftbar">

	</div>
	<div id="content">
       <a>   最新留言:</a><br>
        <c:forEach var="note" items="${list}">
               <table width="565" border="0" class="table">
                 <tr><td width="222">${note.username}在此留言</td>
                 <td width="316">留言时间${note.time}</td>
                 </tr>
                <tr>
                   <td colspan="2">${note.content}</td>
               </tr>          
          </table>   
    </c:forEach>
    <br/>
    <table width="565" border="0" class="table">
      <tr><td>
         <a>共${allpages}页</a><a>第${currentpage}页</a>
    <c:forEach begin="1" var="num" end="${allpages}">
      <a href="/eBook/NoteServlet?action=shownote&cpage=${num}"> 第${num}页</a>
    </c:forEach>

      </td></tr>
    </table>
   
        <form action="/eBook/NoteServlet?action=addnote" method="POST">
            <table width="545">
                
                <tr><td width="57">留言内容</td>              
                    
                    <td width="476"><textarea name="content" rows="2" cols="60"></textarea>
                </td></tr>
                <tr><td align="center" colspan="2"><input type="submit" value="我要留言" /></td></tr>
                
          </table>
            
        </form>
 
  
	</div>
        <div id="footer"><%@ include file="foot.jsp" %></div>
        </div>
    </body>
</html>

⌨️ 快捷键说明

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