empmain_verify_success.asp
来自「好用的管理,代码程序 好用的管理,代码程序」· ASP 代码 · 共 20 行
ASP
20 行
<!--#include file="Connections/EmpMain.asp" -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>审核成功</title>
</head>
<body>
<%
Set EmpList= Server.CreateObject ("ADODB.RecordSet")
EmpList.open "select * from T_Client where F_Id="&request.querystring("id"),MM_EmpMain_STRING,1,3
EmpList("F_IsVerify")=1
response.write "<script language=JavaScript>" & chr(13) & "alert('审核成功!');" &"window.close()" & "</script>"
EmpList.update
EmpList.close
set EmpList=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?