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%">&nbsp;</td>
    <td>&nbsp;</td>
    <td width="10%">&nbsp;</td>
  </tr>
  <%
  Affiche affiche=(Affiche)request.getAttribute("affiche");
  %>
  <tr align="center">
    <td>&nbsp;</td>
    <td><%=affiche.getTitle() %></td>
    <td>&nbsp;</td>
  </tr>
  <tr height="32">
    <td colspan="3">&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><%=affiche.getContent() %></td>
    <td>&nbsp;</td>
  </tr>
  <tr height="32">
    <td colspan="3">&nbsp;</td>
  </tr>
  <tr align="right">
    <td>&nbsp;</td>
    <td><%=affiche.getDates() %></td>
    <td>&nbsp;</td>
  </tr>
  <tr height="32">
    <td colspan="3">&nbsp;</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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