📄 approve_ok.asp
字号:
<!--#include file="..\pub\ChkAdmin.asp"-->
<!--#include file="..\CONN.INC"-->
<%
if Request("RPL")="1" then
conn.execute "update UsageInfo set EventType=2 where EventID="&Request("ID")
conn.execute "update UsageInfo set ApproverID="&Session("UserID")&" where EventID="&Request("ID")
RPL="通过"
end if
if Request("RPL")="2" then
conn.execute "update UsageInfo set EventType=3 where EventID="&Request("ID")
conn.execute "update UsageInfo set ApproverID="&Session("UserID")&" where EventID="&Request("ID")
RPL="驳回"
end if
set rs=nothing
Conn.close
set Conn=nothing
%>
<form name=reDirectURL action=Approve.asp method=post></form>
<script language="javascript">
alert("信息已<%=RPL%>");
document.reDirectURL.submit();
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -