querysinglegoodsinfo.asp
来自「非常地全面完整的物流供应链管理系统 包含全部的需求文档」· ASP 代码 · 共 31 行
ASP
31 行
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>查询单个货物的情况</title>
</head>
<body>
<%if Request.Cookies("IsLogin")="Yes" then%>
<%if Request.Form("BarCode")<>"" then%>
<% Set ASPObj = Server.CreateObject("aspVendorQueryBiz.mtsVendorQuery")
ASPObj.SetVendorId(Request.Cookies("UserId"))
Response.Write(ASPObj.GetGoodsInfoByBarCode(Request.Form("BarCode")))
%>
<%end if%>
<form method="POST" action="querysinglegoodsinfo.asp">
<p>条形码:<input type="text" name="BarCode" size="20" onMouseOver="this.focus()" onFocus="this.select()">
<input type="submit" value="提交" name="B1"></p>
</form>
<%else%>
<p>您未登陆,请先登陆!</p>
<%end if%>
<p><a href="javascript:history.back()">返回</a></p>
<p></p>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?