📄 getpwd4.asp
字号:
<%response.buffer="True"%>
<!--#include file="conn.asp"-->
<!--#include file="ConnUser.asp"-->
<!--#include file="config.asp"-->
<!--#include file="md5.asp"-->
<!--#include file="char.inc"-->
<!--#include file="ChkURL.asp"-->
<%
dim rs,sql
dim username,passwd
username=checkStr(request("username"))
passwd=trim(request.form("passwd"))
passwd2=trim(request.form("passwd2"))
if username="" or passwd="" or passwd2="" then
Show_Err("请不要尝试非法操作!!<br><br><a href='javascript:history.back()'>返回</a>")
response.end
end if
if passwd<>passwd2 then
Show_Err("两次的密码不一样,请不要尝试非法操作!!<br><br><a href='javascript:history.back()'>返回</a>")
response.end
end if
passwd=md5(passwd)
sessionusername=session("sessionusername") '得到session
sessionanswer=session("sessionanswer") '得到session
sessionfullname=session("sessionfullname") '得到session
if sessionusername<>username then '判断session
Show_Err("请不要尝试非法操作!!<br><br><a href='javascript:history.back()'>返回</a>")
response.end
end if
set rs=Server.CreateObject("Adodb.Recordset")
sql="select * from "& db_User_Table &" where "& db_User_Name &"='"&username&"'"
rs.open sql,ConnUser,1,3
If rs.eof Then
Show_Err("这个用户还没有注册呢,请到首页注册吧!<br><br><a href='javascript:history.back()'>返回</a>")
response.end
elseIf rs(db_User_Answer)<>sessionanswer Then '判断session
Show_Err("请不要尝试非法操作!!<br><br><a href='javascript:history.back()'>返回</a>")
response.end
elseIf rs("fullname")<>sessionfullname Then '判断session
Show_Err("请不要尝试非法操作!!<br><br><a href='javascript:history.back()'>返回</a>")
response.end
else
rs(db_User_Password)=passwd
rs.update
session("sessionusername")="" '消除session
session("sessionanswer")="" '消除session
session("sessionfullname")="" '消除session
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
<html><head>
<title>取回密码_建站铺修正版_bbs.jzpu.com</title>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="style.css">
<script language="javascript">
<!--
if (parent.frames.length > 0) {
parent.location.href = location.href;
}
// --></script>
</head>
<body topmargin="0" oncontextmenu="self.event.returnValue=false">
<div align="center"><br><br>
<center>
<table width="760" border="1" cellpadding="3" cellspacing="0" bordercolor="#FFDFBF" bgcolor="#FFFFFF" id="AutoNumber1" style="border-collapse: collapse">
<tr>
<td height="127" valign="top" width="100%"></center>
<div align="center">
<center>
<table border="0" cellpadding="5" width="100%" cellspacing="4" height="49">
<tr>
<td width="100%" height="1">
<p align="center">密码设置成功。</td>
</tr>
</table>
</center>
</div>
</td>
</tr>
<tr>
<td height="14" width="100%">
<p align="center"><a href="javascript:window.close()" class="1">关闭窗口</a></td>
</tr>
</table>
</form>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -