?? findpwd.asp
字號(hào):
<!--#include file="../Common/Inc_DatConn.asp"-->
<!--#include file="../Common/Inc_Function.asp"-->
<!--#include file="../Common/Inc_Config.asp"-->
<%
'┌─ 風(fēng)云ASP在線 ────────────────────────┐
'│ │
'│ 作者:趙振波. http://www.fyasp.com │
'│ │
'│ Q Q:176189168 │
'│ │
'│ Email:fy96@163.com │
'│ │
'│ 程序定做,系統(tǒng)開發(fā),網(wǎng)站制作,提供高質(zhì)量的網(wǎng)絡(luò)產(chǎn)品、技術(shù)和服務(wù)!│
'│ │
'│【版權(quán)聲明】 │
'│ │
'│ 本程序版權(quán)歸坐看風(fēng)云所有,未經(jīng)授權(quán)擅自修改、復(fù)制或散布本程序│
'│ │
'│的部分或全部,將承受嚴(yán)厲的民事和刑事處罰,對(duì)已知的違反者將給予法 │
'│ │
'│律范圍內(nèi)的全面制裁。對(duì)非法使用此程序所造成的一切后果本人概不負(fù)責(zé)!│
'│ │
'└─────────────────── http://www.fyasp.com ──┘
%>
<html>
<head>
<title><% = strSiteName%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta content="交友, 征友, 速配, 約會(huì), 聊天, 征婚, 婚介, 愛情, 友情, 友誼, 朋友, 伙伴, 情人, 伴侶, 同性, 異性, 女人, 男士, 女士, 男孩, 女孩, 帥哥, 美女, 單身, 獨(dú)身, 性感, 浪漫, 激情, 手機(jī)交友, 手機(jī), 短信, 彩信, 鈴聲, 圖片, 照片, 靚照, 貼圖, 語音, 視頻, 搜索, 文章, 商城" name="KEYWORDS">
<link href="../Common/Style.css" type="text/css" rel="stylesheet">
</head>
<body bgColor="#ffffff" leftMargin="0" topMargin="0" marginheight="0" marginwidth="0">
<!--#include file="Top.asp"-->
<table align="center" border="0" width="760" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" align="center"><img height="14" src="<% = strImageUrl%>pic_top_01.gif" width="760" border="0"></td>
</tr>
</table>
<div align="center">
<center>
<table cellSpacing="0" cellPadding="0" width="760" border="0">
<tbody>
<tr>
<td vAlign="top" width="1" background="<% = strImageUrl%>space_01.gif"><img height="1" src="<% = strImageUrl%>space_01.gif" width="1" border="0"></td>
<td vAlign="top" width="10"><img height="1" src="<% = strImageUrl%>space.gif" width="10" border="0"></td>
<td vAlign="top" width="580" align="center">
<table height="103" cellSpacing="0" cellPadding="0" width="580" border="0">
<tbody>
<tr>
<td vAlign="top" height="3"></td>
<tr>
<td vAlign="top" height="100"><img src="<% = strImageUrl%>ad_01.gif" width="580" height="100" alt="一號(hào)廣告位"></td>
</tr>
</tbody>
</table>
<table height="73" cellSpacing="0" cellPadding="0" width="580" border="0">
<tbody>
<tr>
<td vAlign="center" background="<% = strImageUrl%>bg_quick_search_01.gif" height="63" align="center"><!--#include file="../Common/Inc_Search.asp"--></td>
</tr>
<tr>
<td vAlign="top" height="10"></td>
</tr>
</tbody>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="25">
<tr>
<td width="100%" height="30"> 您的位置:<a href="<% = strSysUrl%>index.asp" class="links">首 頁</a> ->> 查找密碼</td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" background="<% = strImageUrl%>002.gif" height="25">
<tr>
<td width="100%" align="center"><font color="#FFFFFF"><b>查 找 密 碼</b></font></td>
</tr>
</table>
<%
if UCase(Request.Form("Oper")) = "FINDPWD" then
Dim rdsMember '/創(chuàng)建會(huì)員賬號(hào)訪問對(duì)象/
Dim sqlMember '/創(chuàng)建SQL語句/
Dim strMember '/會(huì)員賬號(hào)/
Dim strPassword '/管理密碼/
Dim strEmail
Dim strContent
Dim jmlSendEmail
strMember = Request.Form("Member")
set rdsMember = Server.CreateObject("ADODB.Recordset")
sqlMember = "Select * From Dat_Member Where Member = '"& strMember &"'"
rdsMember.Open sqlMember,Conn
if not rdsMember.EOF then
strPassWord = rdsMember("Password")
strEmail = rdsMember("Email")
strContent = "您在"& strSiteName &"的會(huì)員登陸密碼為:"& strPassword &""
set jmlSendEmail = Server.CreateObject("JMAIL.Message")
jmlSendEmail.Logging = True
jmlSendEmail.Silent = True
jmlSendEmail.Encoding = "base64"
jmlSendEmail.Charset = "GB2312"
jmlSendEmail.From = "service@veryage.com" '/發(fā)件人E-Mail/
jmlSendEmail.AddRecipient strEmail '/收件人E-Mail/
jmlSendEmail.ContentType = "text/html"
jmlSendEmail.Subject = ""& strSiteName &" 會(huì)員登陸密碼" '/郵件的標(biāo)題/
jmlSendEmail.HTMLBody = strContent '/文本格式/
jmlSendEmail.MailDomain = "mail.veryage.com" '/發(fā)送郵件服務(wù)器SMTP Server/
jmlSendEmail.Send("mail.veryage.com") '/發(fā)送郵件服務(wù)器POP3 Server/
jmlSendEmail.Close
set jmlSendEmail = nothing
strMsgTitle = "找回密碼成功"
strError = False
strMsg = "找回密碼成功,密碼已發(fā)往您注冊(cè)時(shí)填寫的E-Mail,請(qǐng)注意查收..."
strGoFile = ""& strSysUrl &"index.asp"
Call ShowMessage()
else
Response.Write "<script>alert(""\您輸入的會(huì)員帳號(hào)不存在,請(qǐng)重新輸入!"");window.location='FindPwd.asp';</script>"
end if
rdsMember.Close
set rdsMember = nothing
else
%>
<table borderColor="#111111" cellSpacing="0" cellPadding="0" width="100%" bordercolordark="#FFFFFF" borderColorLight="#3986CE" border="1">
<tr>
<td vAlign="top" width="100%">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" width="100%" align="center">
<br>
<script language="javascript">
//檢驗(yàn)表單的合法性
function CheckIfEnglish(String)
{
var Letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890_";
var i;
var c;
for( i = 0; i < String.length; i ++ )
{
c = String.charAt( i );
if (Letters.indexOf( c ) < 0)
return false;
}
return true;
}
function FindPwdForm() {
if (document.FindPwd.Member.value == "") {
alert("\請(qǐng)輸入您的會(huì)員帳號(hào)!");
document.FindPwd.Member.focus();
}
else if (!CheckIfEnglish(document.FindPwd.Member.value)) {
alert("\您輸入的會(huì)員帳號(hào)不符合規(guī)范!");
document.FindPwd.Member.focus();
}
else if ((document.FindPwd.Member.value).length<4) {
alert("\會(huì)員帳號(hào)至少4位!");
document.FindPwd.Member.focus();
}
else {
return true;
}
return false;
}
</script>
<table border="0" width="90%" cellspacing="1" cellpadding="0">
<form method="post" action="FindPwd.asp" name="FindPwd" OnSubmit="return FindPwdForm()">
<input type="hidden" name="Oper" value="FindPwd">
<tr>
<td width="100%" height="30" bgcolor="#E7EFEF" align="center">請(qǐng)輸入您的會(huì)員帳號(hào): <input type="text" name="Member" maxlength="15" class="face"> <input type="submit" name="Submit" value="查找密碼" class="button"></td>
</tr>
</form>
</table>
<br>
</td>
</tr>
</table>
</td>
</tr>
</table>
<%end if%>
</td>
<td vAlign="top" width="10"><img height="1" src="<% = strImageUrl%>space.gif" width="10" border="0"></td>
<td vAlign="top" width="1" background="<% = strImageUrl%>space_01.gif"><img height="1" src="<% = strImageUrl%>space_01.gif" width="1" border="0"></td>
<td class="bg01" vAlign="top" width="157">
<div align="center">
<center>
<table borderColor="#111111" height="176" cellSpacing="0" cellPadding="0" width="157" border="0">
<tbody>
<tr>
<td vAlign="top" height="35"><img height="35" src="<% = strImageUrl%>pic_520_passport_01.gif" width="157" border="0"></td>
</tr>
<tr>
<td vAlign="top" background="<% = strImageUrl%>pic_520_passport_02.gif" bgColor="#ffffff" height="120" align="center"><!--#include file="../Common/Inc_Login.asp"--></td>
</tr>
<tr>
<td vAlign="top" height="21"><img height="21" src="<% = strImageUrl%>pic_520_passport_03.gif" width="157" border="0"></td></tr></tbody></table></center></div>
<div align="center">
<center>
<table borderColor="#111111" cellSpacing="0" cellPadding="0" width="157" border="0">
<tbody>
<tr>
<td vAlign="center" background="<% = strImageUrl%>space_01.gif" height="25" width="155"> <img src="<% = strImageUrl%>arrow_02.gif" border="0"> <b><font color="#FFFFFF">信息分類</font></b></td></tr>
<tr>
<td height="8" width="155"></td></tr>
<tr>
<td width="155" align="center" valign="top"><!--#INCLUDE FILE="../Common/Inc_Catalog.asp"--></td>
</tr>
<tr>
<td height="8" width="155" colspan="2"></td></tr></tbody></table></center></div>
<div align="center">
<center>
<table borderColor="#111111" cellSpacing="0" cellPadding="0" width="157" border="0">
<tbody>
<tr>
<td vAlign="center" background="<% = strImageUrl%>space_01.gif" height="25"> <img src="<% = strImageUrl%>arrow_02.gif" border="0"> <b><font color="#FFFFFF">合作伙伴</font></b></td></tr>
<tr>
<td height="8"></td>
</tr>
<tr>
<td width="155" align="center" valign="top"><!--#INCLUDE FILE="../Common/Inc_Cooperate.asp"--></td>
</tr>
<tr>
<td height="8"></td>
</tr>
</tbody>
</table>
</center>
</div>
<div align="center">
<center>
<table borderColor="#111111" cellSpacing="0" cellPadding="0" width="157" border="0">
<tbody>
<tr>
<td vAlign="center" background="<% = strImageUrl%>space_01.gif" height="25"> <img src="<% = strImageUrl%>arrow_02.gif" border="0"> <b><font color="#FFFFFF">友情鏈接</font></b></td></tr>
<tr>
<td height="8"></td>
</tr>
<tr>
<td width="155" align="center" valign="top"><!--#INCLUDE FILE="../Common/Inc_Link.asp"--></td>
</tr>
<tr>
<td height="8"></td>
</tr>
</tbody>
</table>
</center>
</div>
</td>
<td vAlign="top" width="1" background="<% = strImageUrl%>space_01.gif"><img height="1" src="<% = strImageUrl%>space_01.gif" width="1" border="0"></td></tr>
<tr>
<td vAlign="top" width="760" colSpan="7" height="14"><img height="14" src="<% = strImageUrl%>pic_bottom_01.gif" width="760" border="0"></td></tr></tbody></table></div>
<!--#include file="../End.asp"-->
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -