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

📄 getbookinfo.jsp

📁 jsp+servlet网上购物,是一个实现mvc的网站
💻 JSP
字号:
<%--     Document   : getBookInfo.jsp    Created on : 2008-11-26, 9:59:10    Author     : 隆科--%><%@page contentType="text/html" pageEncoding="UTF-8"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@ page import="java.util.*"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><html>  <head>       <title>My JSP 'success.jsp' starting page</title>   <link href="1.css" type="text/css" rel="stylesheet">  </head>  <body>  <div id="container">	<div id="banner">		   <%@include file="head.jsp"%>	</div>	<div id="leftbar">	</div>	<div id="content">	 <center>      <h1>书籍信息</h1>      </hr>      <table>        <tr>        <td><img src=${book.image}></td>        <td>原价:     ${book.beforePrice}¥<br/>            现价:     ${book.nowPrice}¥<br/>            <form action="CartServlet?action=addcart&bookid=${book.bookId}&bn=${book.bookName}&yp=${book.beforePrice}&np=${book.nowPrice}" method="POST">               购买数量:<input type="text" name="num" value="1" size="2"/><br/>               <input type="submit" value="加入购物车" />           </form>                              </td>        <tr>      </table>      <h1> 书籍基本信息</h1>      <table>      <tr>        <td>书籍名称:${book.bookName}</td>      </tr>      <tr><td>出版社:  ${book.publishCompany}</td></tr>      <tr><td>出版日期:${book.publishDate}</td></tr>      <tr><td>书籍描述:${book.des}</td></>      <tr><td>所属分类:</td></tr>      </table>      </center>   	</div>        <div id="footer"><%@ include file="foot.jsp" %></div></div>     </body></html>

⌨️ 快捷键说明

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