seeaffiche.jsp
来自「hibernate做的一个网上商店系统」· JSP 代码 · 共 51 行
JSP
51 行
<%@ page contentType="text/html; charset=GBK" import="mrgf.hibernate.Affiche" %>
<html>
<link rel="stylesheet" href="css/style.css">
<style type="text/css">
<!--
.style1 {color: #FF3366}
-->
</style>
<head>
<title>
index
</title>
</head>
<body bgcolor="#ffffff" topmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr height="32">
<td width="10%"> </td>
<td> </td>
<td width="10%"> </td>
</tr>
<%
Affiche affiche=(Affiche)request.getAttribute("affiche");
%>
<tr align="center">
<td> </td>
<td><%=affiche.getTitle() %></td>
<td> </td>
</tr>
<tr height="32">
<td colspan="3"> </td>
</tr>
<tr>
<td> </td>
<td><%=affiche.getContent() %></td>
<td> </td>
</tr>
<tr height="32">
<td colspan="3"> </td>
</tr>
<tr align="right">
<td> </td>
<td><%=affiche.getDates() %></td>
<td> </td>
</tr>
<tr height="32">
<td colspan="3"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?