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

📄 shp_detail.asp

📁 oracle9i程序事例集
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" %>
<%
  dim conn
  dim connstr
  Set conn=Server.CreateObject("ADODB.Recordset")
  connstr="Driver={Microsoft ODBC for Oracle};server=mylink;uid=system;pwd=system;"
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>浏览上架商品信息</title>
<style>
td {
	font-size: 13px;
}
</style>
</head>

<body>
<div align="left"><!-- #include file="pagetop.asp" --></div>
<div align="center"><center>
  <table width="95%"  border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td height="20" colspan="2"></td>
      </tr>
    <tr>
      <td width="180" valign="top"><table width="180" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><!-- #include file="userinfo.asp" --></td>
        </tr>
        <tr>
          <td><!-- #include file="companyinfo.asp" --></td>
        </tr>
        <tr>
          <td><!-- #include file="search_easy.asp" --></td>
        </tr>
      </table></td>
      <td align="center" valign="top">
    <table width="95%" border="0" cellspacing="0" cellpadding="0">
      <!--DWLayoutTable-->
<%
  set rs=server.CreateObject("adodb.recordset")
  sql="select * from GSCOTT.product_info_table where product_id='"&request.QueryString("id")&"'"
  rs.open sql,connstr,3,3
%>
        <tr align="center">
          <td height="30" colspan="3"><font size="3px" color="#0000FF">商品详细信息</font></td>
        </tr>
        <tr>
          <td height="106" colspan="3" align="center" valign="middle"><img src="../Admin/pic/<%=rs("product_picpath")%>"></td>
          </tr>
        <tr>
          <td width="167" height="27" align="right" valign="top">产品型号:</td>
          <td colspan="2" valign="top"><%=rs("product_kindnum")%></td>
        </tr>
        <tr>
          <td height="27" align="right" valign="top">燃烧能力:</td>
          <td colspan="2" valign="top"><%=rs("product_burn_ability")%></td>
        </tr>
        <tr>
          <td height="27" align="right" valign="top">燃烧媒介:</td>
          <td colspan="2" valign="top"><%=rs("product_media_inuse")%></td>
        </tr>
        <tr>
          <td height="27" align="right" valign="top">适应风温:</td>
          <td colspan="2" valign="top"><%=rs("product_temp_inuse")%></td>
        </tr>
        <tr>
          <td height="27" valign="top"><div align="right">价格: </div></td>
          <td colspan="2" valign="top"><%=rs("product_price")%> </td>
          </tr>
        <tr>
          <td height="27" valign="top"><div align="right">保修期: </div></td>
          <td colspan="2" valign="top"><%=rs("product_repairtime")%> </td>
        </tr>
        <tr>
          <td height="27" valign="top"><div align="right">备注:</div></td>
          <td width="269" valign="top"><%=rs("product_remark")%></td>
          <td width="43" align="right" valign="bottom"><a href="javascript:demo('gouwu.asp?id=<%=rs("product_id")%>&action=add');"><img border="0" src="../img/goumai.gif" width="43" height="12"></a></td>
        </tr>
        <tr>
          <td height="55"></td>
          <td></td>
          <td></td>
        </tr>
      </table>
    <%rs.close%></td>
    </tr>
    <tr>
      <td height="20" colspan="2">&nbsp;</td>
      </tr>
  </table>
  <!-- #include file="pagefooter.html" -->
</center></div>

</body>
<%
  set rs=nothing
%>
</html>

⌨️ 快捷键说明

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