showbyname.jsp
来自「本软件系统可以实现预定酒店的多方位查询、预订酒店的功能。可以方便人们入住酒店,增」· JSP 代码 · 共 40 行
JSP
40 行
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="com.abc.hotel.*"%>
<%
HotelRemote hotelRemote = (HotelRemote)request.getAttribute("session_findByName");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="Content-Language" content="zh-cn">
<title>showByName.jsp</title>
</head>
<body>
<HR color=#cccccc noShade SIZE=1 width="95%">
<table border="1" width="100%" bordercolor="#FFFFFF" cellspacing="0" cellpadding="0">
<tr>
<td width="33%" rowspan="3"><img border="0" src="<%=request.getContextPath()%>/image/<%=hotelRemote.getPic()%>" width="150" height="130"></td>
<td width="33%">{name}<%=hotelRemote.getName()%></td>
<td width="34%">{hotel level}<%=hotelRemote.getHotelLevel()%></td>
</tr>
<tr>
<td width="67%" colspan="2">{descr}<%=hotelRemote.getHotelDesc()%></td>
</tr>
<tr>
<td width="67%" colspan="2">{address}<%=hotelRemote.getAddress()%></td>
</tr>
</table>
<p><br>
</p>
<HR color=#cccccc noShade SIZE=1 width="95%">
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?