📄 forgetpwdnext.asp
字号:
<!-- #include file="conn.asp"-->
<%
username=replace(trim(request("username")),"'","''")
sql="select * from guser where username='"&username&"'"
set rs=conn.execute (sql)
%>
<html>
<head>
<title>找回密码</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="main.css" type="text/css">
<style type="text/css">
<!--
.style2 {font-size: 12px}
body {
background-color: #FFFFFF;
}
-->
</style>
</head>
<body text="#000000">
<%
if rs.eof or err then
%>
<script language=Javascript>
<!--
alert(" >>> 无该用户,请重新输入用户名 <<<\n\n如果您记不清了,请电话与我们联系以确认您的身份");
window.history.go(-1);
//-->
</script>
<%
else
%>
<form name="form1" method="post" action="forgetpwdlast.asp">
<TABLE
width="400" height="76" border=1 align="center" cellPadding=2 cellSpacing=2 bordercolor="#111111" borderColorLight=#AAAAAA borderColorDark=#EEEEEE style="border-collapse: collapse">
<tr bgcolor="#3979C6">
<td height="19" colspan="2" bgcolor="#3979C6"> <div align="center" class="style2"><font color="#FFFFFF">找回密码</font></div></td>
</tr>
<tr>
<td width="210" height="9"> <div align="left" class="style2"> 您的提示问题是:<font color="#FF0000"><%=rs("question")%></font>
</div></td>
</tr>
<tr>
<td height="10" colspan="2"><div align="left" class="style2"> 请输入您的提示答案
<input name="reply" type="text" id="reply" style="border: 1px solid #7D85A2; background-color: #CBE6A8" size="26" maxlength="16">
<input type="hidden" name="username" value="<%=Request("username")%>">
</div></td>
</tr>
<tr>
<td height="26" colspan="2"> <div align="center">
<input type="submit" name="Submit" value=" 下一步 " style="font-size: 9pt; border: 1px solid #7D85A2; background-color: #CBE6A8">
</div></td>
</tr>
</table>
</form>
<%end if %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -