- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
changepws.asp
资源名称:blog.rar [点击查看]
上传用户:syzzy1975
上传日期:2022-07-17
资源大小:670k
文件大小:2k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
- <%
- %><!--#include file="manage/inc/config.asp"-->
- <!--#include file="inc/conn.asp"-->
- <!--#include file="inc/chk.asp"-->
- <%
- if NOT isempty(request("ChangePwsSubmit")) then
- dim username
- username=request.cookies(cookieName)("username")
- set rs=server.CreateObject("adodb.recordset")
- rs.open "select password from [user] where username='"&username&"'",conn,1,3
- if md5(trim(request("password")))<>trim(rs("password")) then
- call MsgBox("对不起,您输入的原密码错误!","Back","None")
- else
- rs("password")=md5(trim(request("password1")))
- rs.update
- rs.close
- set rs=nothing
- call MsgBox("密码更改成功!","none","none")
- end if
- end if
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <title>东区网上书店</title>
- <link href="style.css" rel="stylesheet" type="text/css">
- </head>
- <body>
- <!--#include file="head.htm"-->
- <table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td width="219" align="left" valign="top"><!--#include file="uleft.asp"--> <br></td><td width="561" align="left" valign="top">
- <br> <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td><img src="images/w.gif" width="18" height="18"></td>
- <td style="color:#415373">修改密码</td>
- </tr>
- </table> <br> <form name="form1" method="post" action="">
- <table border="0" align="center" cellpadding="3" cellspacing="3">
- <tr>
- <td>旧密码:</td>
- <td><input name="password" type="password" id="password"></td>
- </tr>
- <tr>
- <td>新密码:</td>
- <td><input name="password1" type="password" id="password1"></td>
- </tr>
- <tr>
- <td>确 认:</td>
- <td><input name="password2" type="password" id="password2"></td>
- </tr>
- <tr align="center">
- <td colspan="2"><input name="ChangePwsSubmit" type="submit" id="ChangePwsSubmit" value="确认"></td>
- </tr>
- </table>
- </form> <br>
- </td>
- </tr>
- </table>
- <!--#include file="foot.htm"-->
- </body>
- </html>