<% id = Request("id") newpassword = Request("password") newpasswordtemp = Request("passwordtemp")
If newpassword <> newpasswordtemp Then Response.Write "<center>對不起,新密碼與新密碼確認不同!請重試!</center>" Response.End End If
Set conn = Server.CreateObject("ADODB.Connection") DBPath = Server.MapPath("userinfo.mdb") conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath Set rs = Server.CreateObject("ADODB.Recordset") sql="update userinfo set 密碼='" & newpassword & "' where id="&id rs.Open sql, conn, adOpenDynamic, adLockPessimistic %> 此程序非常簡單,相信各位都會懂!跟“如何使用 Microsoft Access 和 Active Server Pages 加密你的頁面 !”的結合,實現讓用戶更改密碼就簡單了! 如要看例子請到http://www.hy.zj.cn 的留言板去! (出處:熱點網絡)
|