class_name_addsuccess.asp
来自「客户管理模块:随着计算机的普及和网络的迅猛发展」· ASP 代码 · 共 33 行
ASP
33 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/EmpMain.asp" -->
<!--#include file="EmpMain_CheckRight.asp"-->
<%
if fncheckupart(1)=true or fncheckupart(2)=true then
else
response.Write("没有权限访问该页!")
response.end
end if%>
<%
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_EmpMain_STRING
MM_editQuery = "insert into class_name (selectName) values('"&request("class_name")&"' )"
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script>
alert("修改资料成功!")
window.close;
</script>
</head>
<body>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?