📄 puraudit.asp
字号:
<!--#include file="../conndb.asp"-->
<html>
<head>
<title>审核采购订单</title>
</head>
<body>
<%
Dim pid
pid = Request.QueryString("pid")
sql = "Update PurchaseOrder Set Status='审核' Where PurId='" & pid & "'"
Set rs = Conn.Execute(sql)
Response.Write "<h3>采购商品信息成功审核</h3>"
Set rs = Nothing
%>
</body>
<script language="javascript">
// 刷新父级窗口,延迟此关闭
opener.location.reload();
setTimeout("window.close()",600);
</script>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -