gusucode.com > ASP+ACCESS在线人才招聘网(源代码+论文) > ASP+ACCESS在线人才招聘网(源代码+论文)\person_infouser_updata.asp

    <!--#include file="inc/conn.asp"-->
<!--#include file="per_session.asp"-->
<!--#include file="resultred.asp"-->
<%
 password=Request("password")
 confirmpassword=Request("confirmpassword")
 if password<>confirmpassword then
  resultred"对不起,两次输入的密码不相符,请重新输入"
 end if
 Set Rs=Server.CreateObject("Adodb.RecordSet")
 sql="select * from job_person where per_id="&session("per_id")
 Rs.Open sql,conn,3,3
 if not rs.eof then
 rs("password")=password
 Rs.Update
 end if
 Rs.Close
 Response.redirect"person_myself.asp?result=成功更新密码"
 %>