📄 modify3.asp
字号:
<%@ Language=VBScript %>
<!--#include file="conn.asp"-->
<!--#include file="../getlevel.asp"-->
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312"/>
<STYLE type=text/css>BODY {
FONT-FAMILY: "宋体"; FONT-SIZE: 10pt
}
TABLE {
FONT-FAMILY: "宋体"; FONT-SIZE: 10pt
}
</STYLE>
<TITLE>人员信息修改</TITLE>
</head>
<body bgcolor="#567D30">
<%
'取得各个表单的录入数据
rauthorized=Request.Form("authorized")
rnownum=Request.Form("nownum")
rsort=Request.Form("sort")
%>
<%
sql="update mp_authorized set"
sql=sql+" authorized="&rauthorized&","
sql=sql+" nownum="&rnownum&" "
sql=sql+" where level1='"&level1&"' and level2='"&level2&"' and level3='"&level3&"' and level4='"&level4&"' and sort='"&rsort&"'"
conn.Execute(sql)
conn.Close
%>
<%
response.write "<script language='javascript'>"
response.write "alert('修改成功!');"
response.write "history.go(-1);"
response.write "</script>"
response.end
conn.close
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -