?? pwdreset.asp
字號(hào):
<!--#include file="../conndb.asp"-->
<html>
<head>
<title>用戶(hù)密碼重置</title>
</head>
<body>
<%
Dim uid
uid = Request.QueryString("uid")
sql = "Update Users Set UserPwd='111111' Where UserName='" & uid & "'"
Set rs = Conn.Execute(sql)
Response.Write "<h3>用戶(hù)密碼成功重置</h3>"
Set rs = Nothing
%>
</body>
<script language="javascript">
//延遲此關(guān)閉
setTimeout("window.close()",600);
</script>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -