24 lines
638 B
Plaintext
24 lines
638 B
Plaintext
|
|
<%@ page contentType="text/html; charset=gb2312" %>
|
|||
|
|
<%@ page import=" com.demo.BookBean"%>
|
|||
|
|
<jsp:useBean id="book" class="com.demo.BookBean" scope="session" />
|
|||
|
|
|
|||
|
|
<html><body>
|
|||
|
|
<table border="0">
|
|||
|
|
<tr><td><3E><><EFBFBD><EFBFBD>:</td>
|
|||
|
|
<td><jsp:getProperty name="book" property="bookid"/></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr><td><3E><><EFBFBD><EFBFBD>: </td>
|
|||
|
|
<td><jsp:getProperty name="book" property="title"/></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr><td><3E><><EFBFBD><EFBFBD>:</td>
|
|||
|
|
<td><jsp:getProperty name="book" property="author"/></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr><td><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:</td>
|
|||
|
|
<td><jsp:getProperty name="book" property="publisher"/></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr><td><3E>۸<EFBFBD>:</td>
|
|||
|
|
<td><jsp:getProperty name="book" property="price"/></td>
|
|||
|
|
</tr>
|
|||
|
|
</table>
|
|||
|
|
</body></html>
|