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

📄 bookinfo.jsp

📁 JAVA 光盘操作说明 是解压包,直接解压就可以了
💻 JSP
字号:
<%--本JSP显示所选图书的详细资料
 --%>

<%@ page import="examples.BookItem" %>
<%@ page contentType="text/html; charset=GBK" %> 
<html>
    <head><title> 图书详细信息 </title></head>
    <body>
        <jsp:include page="title.jsp" />   
	<jsp:directive.page errorPage="error.jsp" />
	    
        <%    
         BookItem item=(BookItem)request.getAttribute("bookItem");
        %>
        
      <b><%=item.getName()%><b>
      <h4> 介绍:</h4>
       <%=item.getDescription()%> 
      <h4>单价(打折前):<%=item.getBasePrice()%></h4> 

      <center>
      <A href="/BookStore/catalog?Buy=<%=item.getBookID()%>">加入购书车</A><br>
      <A href="/BookStore/catalog">查看目录</A><br>
      <A href="/BookStore/showQuote">查看购书车</A>
     </center>
   </body>
</html>

⌨️ 快捷键说明

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