📄 getpws2.asp
字号:
<!--#include file="top.asp"-->
<!--#include file="Inc/msgbox.asp"-->
<%
'****************************************************
' 多多校园电子商务工作室 Power by ddtaobao.com
' Email:kayvin@sohu.com OICQ:6334278 站长:小羽
' Web: http://www.ddtaobao.com 淘宝旺旺:qq63334278
' Copyright (C) 2006 ddtaobao.com All Rights Reserved
'****************************************************
dim user_name,strsql,rs,user_answer
user_answer=request.Form("user_answer")
user_name=request.QueryString("user_name")
strsql="select user_answer from [dduser] where user_name='"& user_name &"'"
set rs=conn.execute(strsql)
session("user_name")=user_name
if user_answer<>rs("user_answer") then
call msgbox("答案错误","Back","")
response.End()
end if
%>
<form name="form1" method="post" action="GetPws3.asp">
<table width="580" border="0" align="center" cellpadding="4" cellspacing="4" >
<tr>
<td width="109">请输入新密码:</td>
<td width="361"><input name="user_password" type="text" id="user_password">
<input type="submit" name="Submit" class=input value="提交"></td>
</tr>
</table>
<%=session("user_name")%>
</form>
<!--#include file="bottom.asp"-->
</div>
</body>
</html>
<%
conn.Close
Set conn=Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -