📄 modifymanagerok.asp
字号:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="../../Connections/sell.asp" -->
<%
if(Request("hmanager") <> "") then varmanager = Request("hmanager")
if(Request("newpassword") <> "") then varpassword = Request("newpassword")
if(Request("hid") <> "") then varid = Request("hid")
'更新操作员信息
sql = "UPDATE dbo.tab_manager SET manager = '" + Replace(varmanager, "'", "''") +_
"', password = '" + Replace(varpassword, "'", "''") + "' WHERE ID = " +_
Replace(varid, "'", "''") + ""
conn.Execute(sql)
%>
<html>
<head>
<title>网上商品交易系统——应收管理!</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style.css" rel="stylesheet">
</head>
<body bgcolor="#FFFFFF" text="#000000" background="../../images/bg.gif">
<table width="590" border="0" cellspacing="-2" cellpadding="-2" height="311">
<tr>
<td>
<div align="center">
<p><b><font color="990000">密码修改成功!</font></b></p>
<p><font color="#990000"><b><a href="./modifymanager.asp" class="l" target="_self">返回</a>
</b></font></p>
</div>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -