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

📄 b_detail.asp

📁 房地产信息管理平台
💻 ASP
字号:
<!--#include file="../../showsort/showsort(book).asp"-->
<html>
<head>
<title>图书管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" background="../../images/imis_index_34.jpg" leftmargin="0" topmargin="0" bgproperties="fixed">
<img src="../../images/imis_index_25.jpg" width="516" height="78" usemap="#Map" border="0"><map name="Map"><area shape="rect" coords="450,56,503,74" href="#" onclick="window.close()"></map><%sql="select * from book_main where id='"&request("id")&"'"
     set rs=server.createobject("ADODB.Recordset")
	  rs.Open sql,source,3,3 
%> 
<form name="form1" >
  <font size="2">  本书状态:<font color=red><% if rs("borrow")=0 then %><font color="#990000">未出借</font><%else%><font color="#990000">出借</font><%end if%></font></font> 
  <br>
  <br>
  <table width="90%" border="1" cellspacing="0" cellpadding="0" align="center" bordercolorlight="#99CCFF" bordercolordark="#FFFFFF">
    <tr> 
      <td width="13%"><font size="2">编号</font></td>
      <td width="31%"> <font size="2"><%=rs("number")%> </font></td>
      <td width="13%"><font size="2">书名</font></td>
      <td width="43%"> <font size="2"><%=rs("name")%> </font></td>
    </tr>
    <tr> 
      <td width="13%"><font size="2">作者</font></td>
      <td width="31%"> <font size="2"><%=rs("author")%> </font></td>
      <td width="13%"><font size="2">单价</font></td>
      <td width="43%"> <font size="2"><%=rs("price")%> </font></td>
    </tr>
    <tr> 
      <td width="13%"><font size="2">出版社</font></td>
      <td width="31%"> <font size="2"><%=rs("book_concern")%> </font></td>
      <td width="13%"><font size="2">出版时间</font></td>
      <td width="43%"><font size="2"><%=rs("publishment_date")%></font></td>
    </tr>
    <tr> 
      <td width="13%"><font size="2">内容简介</font></td>
      <td colspan="3"><font size="2"><%=rs("detail")%>  </font></td>
    </tr>
    <%sql3="select * from book_borrow where id='"&rs("id")&"' and sign=1"
    set rs3=server.createobject("ADODB.Recordset")
   rs3.Open sql3,source,3,3%><%if not rs3.eof then%> 
    <tr> 
      <td width="13%"><font size="2">借者</font></td>
      <td width="31%"> <font size="2"><%=rs3("borrow_man")%> </font></td>
      <td width="13%"><font size="2">借书时间</font></td>
      <td width="43%"><font size="2"><%=rs3("borrow_time")%></font></td>
    </tr>
    <%end if%> 
  </table>
  <p align="right">&nbsp; </p>
</form>
</body>
</html>

⌨️ 快捷键说明

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