kucun_chuli.asp

来自「oracle9i程序事例集」· ASP 代码 · 共 34 行

ASP
34
字号
<%@LANGUAGE="VBSCRIPT"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>库存处理</title>
<% if session("admin_id")="" then %>
  您还没有登录或者您的权限不够,五秒钟后自动返回登录,如果您的浏览器没有自动返回,请<a href="../admin/login.html">点击登录</a>。
<meta http-equiv="refresh" content="5;url=login.html">
<% else %>
</head>

<body>
<%
 dim sdate,stype,sstype
 sdate=request.Form("date")
 if sdate="" then
 sdate=date
 end if
 stype=request.Form("type")
 select case stype
 case "ruku"
 response.Redirect("today_ruku.asp?date="&sdate)
 case "chuku"
 response.Redirect("today_chuku.asp?date="&sdate)
 case "jinchu"
 response.Redirect("today_jinchu.asp?date="&sdate)
 case "kuncun"
 response.Redirect("today_kucun.asp?date="&sdate)
 end select
%>
</body>
<% end if %>
</html>

⌨️ 快捷键说明

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