empmain_codemain_process.asp

来自「欢迎大家分享本系统为bs架构的asp+access版本。<br>包含:员工信息」· ASP 代码 · 共 29 行

ASP
29
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/EmpMain.asp" -->
<!--#include file="EmpMain_CheckRight.asp"-->
<%
ID=request.Form("ID")
OptionContent = request.Form("OptionContent")

Set MM_editCmd = Server.CreateObject("ADODB.Command")
 MM_editCmd.ActiveConnection = MM_EmpMain_STRING
 MM_editQuery = "update  selectmain  set OptionContent='"&OptionContent&"' where ID = " & ID & "" 
 MM_editCmd.CommandText = MM_editQuery
 MM_editCmd.Execute
 call fnCreateLog("编辑企业定义")
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script>
alert("修改资料成功!")
window.location="EmpMain_CodeMain.asp?ID=<%=ID%>"
</script>
</head>

<body>

</body>
</html>

⌨️ 快捷键说明

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