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

📄 showbooker.asp

📁 by php excellent hotel management system
💻 ASP
字号:
<%
'###########################################################################################
'			   Copyright (C) 2006 FreeLin rights reserved.                                 '
'			      本系统由FREELIN工作室独立开发2006.3.20                                      '
'				     版权所有,并保留所有版权,不得修改传播                                       '
'					    http://www.yisky.com                                          '
'						     co_lin@126.com                                                '
'###########################################################################################
%>
<!--#include file="config.asp"-->
<!--#include file="freelin.asp"-->
<%
modId = trim(request.querystring("id"))
conn.execute "update booker set xln_view=""yes"" where id="&modId&" "
set rs = conn.execute("select * from booker where id="& modId &"")
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查看预定资料--FreeLin设计</title>
<LINK href="../images/style.css" type=text/css rel=stylesheet>
</head>

<body>
<table width="100%" border="1" align="center" cellpadding="3" cellspacing="0" bordercolor="#f0f0f0" bgcolor="#FFFFFF">
  <tr class="text"> 
    <td width="14%" height="30">姓 名</td>
    <td width="37%"><%=rs("name")%></td>
    <td width="15%">电 话</td>
    <td width="34%"><%=rs("tel")%></td>
  </tr>
  <tr class="text"> 
    <td height="30">Email</td>
    <td><%=rs("email")%></td>
    <td>套 数</td>
    <td><%=rs("number")%></td>
  </tr>
  <tr class="text">
    <td height="30">入住时间</td>
    <td><%=rs("indata")%></td>
    <td>离开时间</td>
    <td><%=rs("outdata")%></td>
  </tr>
  <tr class="text">
    <td height="30">地 址</td>
    <td colspan="3"><%=rs("dress")%></td>
  </tr>
  <tr class="text">
    <td height="30">其它要求</td>
    <td colspan="3"><%=rs("other")%></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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