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

📄 stockpile_ed.asp

📁 ASP数据库系统开发案例精选(光盘)中的客户关系管理系统 用户名/密码:admin/admin
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file=DataBase/conn.asp-->
<!--#include file=config.asp-->
<%
set rs=server.CreateObject("adodb.recordset")
sql="SELECT dbo.tb_Product.ProductNumber, dbo.tb_Stockpile.StockpileProductNumber,dbo.tb_Stockpile.StockpileContent, dbo.tb_Stockpile.StockpileType,dbo.tb_Stockpile.SetName, dbo.tb_Stockpile.SetTime FROM dbo.tb_Stockpile INNER JOIN dbo.tb_Product ON  dbo.tb_Stockpile.StockpileProductName = dbo.tb_Product.id WHERE (dbo.tb_Stockpile.id ="&request("id")&")"
rs.open sql,conn,1,3
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
body {
	background-color: #DFEEFF;
}
body,td,th {
	font-size: 12px;
}
-->
</style>
<link href="css/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {font-weight: bold}
-->
</style>
</head>

<body >
<form name="form1" method="post" action="">
<fieldset class="fiedset">
  <legend>库存信息</legend>
  <table width="970"  border="0" align="center" cellspacing="0" bgcolor="#FFFFFF" class="table">
        <tr align="center" bgcolor="#efefef">
          <td height="37" colspan="8">          <table width="718"  border="0">
            <tr>
              <td width="11%" align="right">创建日期:</td>
              <td width="32%"><%=rs("SetTime")%></td>
              <td width="8%">创建人:</td>
              <td width="37%"><%=rs("SetName")%>              </td>
              <td width="12%"><input name="Submit" type="button" class="input" value=" 返 回 " onClick="location='javascript:history.go(-1)'"></td>
            </tr>
          </table></td>
    <tr>
      <td width="21%"  height="30" align="right">产品编号:</td>
      <td colspan="3"  width="33%" ><input name="StockpileProductNumber2" type="text" class="in" id="StockpileProductNumber2" value="<%=rs("ProductNumber")%>" size="30" readonly="true"></td>
      <td width="10%" align="right">&nbsp;</td>
      <td width="37%" colspan="3">&nbsp;</td>
    </tr>
    <tr>
      <td height="30" align="right">产品数量:</td>
      <td colspan="3"><input name="StockpileProductNumber" type="text" class="in" id="StockpileProductNumber" value="<%=rs("StockpileProductNumber")%>" size="30" readonly="true"></td>
      <td align="right">库存类型:</td>
      <td colspan="3"><input name="StockpileProductNumber3" type="text" class="in" id="StockpileProductNumber3" value="<%=rs("StockpileType")%>" size="30" readonly="true"></td>
    </tr>
    <tr>
      <td height="30" align="right">库存说明:</td>
      <td colspan="7" rowspan="5"><textarea name="StockpileContent" cols="92" rows="9" class="table" id="StockpileContent" readonly="true"><%=rs("StockpileContent")%></textarea></td>
    </tr>
    <tr>
      <td height="30" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td height="30" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td height="30" align="right">&nbsp;</td>
    </tr>
    <tr>
      <td height="30" align="right">&nbsp;</td>
    </tr>

    <tr align="center">

    </tr>
  </table>
  <table width="90%" height="5"  border="0" align="center">
    <tr>
      <td></td>
    </tr>
  </table>
</fieldset>
</form>
</body>
</html>

⌨️ 快捷键说明

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