?? edit_password.asp
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../include/config.asp" -->
<%
if Request.Form("submit") <> "" then
session("conn").execute "update member set password = '" & trim(Request.Form("new_password")) & "' where login_name = '" & trim(Request.Form("login_name")) & "' and password = '" & trim(Request.Form("password")) & "'",,adCmdText + adExecuteNoRecords
%>
<script language="JavaScript" type="text/JavaScript">
window.alert("Password change successful!");
window.open("../index/index.asp","_self");
</script>
<%
end if
%>
<html>
<head>
<title>修改密碼</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style/style.css" rel="stylesheet" type="text/css">
</head>
<script language="JavaScript" type="text/JavaScript" src="../include/FormCheck.js"></script>
<body>
<form action="edit_password.asp" method="post" name="frm_edit_password" onSubmit="return FormCheck('frm_edit_password');">
<table width="220" border="0" align="center" cellpadding="1" cellspacing="1">
<tr bgcolor="#dddddd">
<td colspan="2" align="center">修改密碼</td>
</tr>
<tr>
<td width="60">用戶名</td>
<td><input name="login_name" type="text" id="login_name" chkname="用戶名" chknullable="false" value="<%= session("login_name") %>"></td>
</tr>
<tr>
<td width="60">密 碼</td>
<td><input name="password" type="password" id="password" chkname="密碼" chknullable="false" chkminlength="6" chkmaxlength="10"></td>
</tr>
<tr>
<td width="60">新密碼</td>
<td><input name="new_password" type="password" id="new_password" chkname="新密碼" chknullable="false" chkminlength="6" chkmaxlength="10"></td>
</tr>
<tr>
<td width="60">確認密碼</td>
<td><input name="new_password2" type="password" id="new_password2" chkname="確認密碼" chknullable="false" chkconsistant="new_password"></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" name="Submit" value="修 改">
<input name="Reset" type="reset" id="Reset" value="重 置"></td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -