?? pass_save.asp
字號:
<!--#include file="sysconfig.asp"-->
<!--#include file="inc/md5.asp"-->
<%
password=replace(trim(Request("pwd1")),"'","")
if password<>"" then
password=md5(password)
set rs=server.createobject("adodb.recordset")
sqltext="select * from Admin where Id=" & request.querystring("uid")
rs.open sqltext,conn,3,3
'更新用戶密碼到數(shù)據(jù)庫
rs("PassWord")=password
rs.update
rs.close
conn.close
else
end if
response.redirect "user.asp"
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -