id = Request("id") newpassword = Request("password") newpasswordtemp = Request("passwordtemp") If newpassword newpasswordtemp Then Response.Write "center 对不起" />
欢迎来到入门教程网!

编程问答

当前位置:主页 > 网络编程 > 编程问答 >

如何在线更改密码?

来源:本站原创|时间:2020-01-11|栏目:编程问答|点击:

<%<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

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

%>

[1]

上一篇:如何取回已忘记的密码?

栏    目:编程问答

下一篇:如何使用表单发送电子邮件?

本文标题:如何在线更改密码?

本文地址:https://www.xiuzhanwang.com/a1/bianchengwenda/12100.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有