当前位置:  编程技术>.net/c#/asp.net

asp.net发送邮件找回密码的示例代码

    来源: 互联网  发布时间:2014-08-30

    本文导语:  asp.net实现找回密码功能,代码:   代码示例: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts;...

asp.net实现找回密码功能,代码:
 

代码示例:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Net.Mail;
public partial class Default6 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
MultiView1.ActiveViewIndex = 0;

}
}
protected void Button1_Click(object sender, EventArgs e)
{
string name = TextBox2.Text.ToString();
string sql = "select count(*) from Usermember where username='" + name + "'";
int n=SqlDb.ExecScalar(sql);
if(n>0)
{
MultiView1.ActiveViewIndex=1;

string sql1 = "select pwdanswer,pwdquestion from Usermember where username='" + name + "'";
SqlDataReader dr = SqlDb.GetReader(sql1);
while (dr.Read())
{
TextBox3.Text = dr["pwdquestion"].ToString();

}
dr.Dispose();
}
else
{
MultiView1.ActiveViewIndex = 0;

Response.Write("alert('无此用户名');history.back();");
}
}
protected void Button2_Click(object sender, EventArgs e)
{
TextBox txt = new TextBox();

string an="";
string email = "";
string pwd = "";
Random pwd1 = new Random();
pwd = pwd1.Next(100000, 9999999).ToString();
txt.Text = pwd;
string name = TextBox2.Text.ToString();
string sql = "select pwdanswer,pwdquestion,user_email,userpwd from Usermember where username='" + name + "'";
SqlDataReader dr = SqlDb.GetReader(sql);
while (dr.Read())
{
an = dr["pwdanswer"].ToString();
email = dr["user_email"].ToString();
//pwd = dr["userpwd"].ToString();

}
if (TextBox4.Text == an)
{
string sql2 = "update Usermember set userpwd='" + SqlDb.MD5(txt) + "' where username='" + name + "'";
SqlDb.ExecSql(sql2);
MailAddress add=new MailAddress("");
if (Send(add, email, "找回密码", pwd+" 请用此密码登录并及时修改您的密码!谢谢..."))
{
Response.Write("alert('回答正确,一封邮件已发送到你的邮箱,请查 收!');location.href='" + Request.Url + "';");
}
else
{
Response.Write("alert('发送失败');JavaScript:history.back();");
}
}
else
{
Response.Write("alert('回答错误');JavaScript:history.back();");
}
}

///
/// 发送email邮件,找回密码
///
/// 发件人邮箱地址
/// 收件人邮箱地址
/// 邮件主题
/// 邮件内容
///
public static bool Send(MailAddress MessageFrom, string MessageTo, string MessageSubject, string MessageBody)
{
MailMessage message = new MailMessage();
        message.From = MessageFrom;
message.To.Add(MessageTo);              //收件人邮箱地址可以是多个以实现群发
message.Subject = MessageSubject;
message.Body = MessageBody;
message.IsBodyHtml = true;              //是否为html格式
message.Priority = MailPriority.High;   //发送邮件的优先等级
        SmtpClient sc = new SmtpClient();
sc.Host = "smtp.163.com";              //指定发送邮件的服务器地址或IP
sc.Port = 25;                           //指定发送邮件端口
sc.Credentials = new System.Net.NetworkCredential("", "XXX"); //指定登录服务器的用户名和密码
try
{
sc.Send(message); //发送邮件
}
catch (SmtpException ex)
{

//return ex.Message;
}
return true;
}
}


    
 
 

您可能感兴趣的文章:

  • c#/ASP.NET操作cookie(读写)代码示例
  • asp.net防止页面重复提交(示例)
  • asp.net数据绑定时动态改变值(示例)
  • asp.net正则表达式提取中文的代码示例
  • asp.net页面防止重复提交示例分享
  • asp.net获取网站目录物理路径示例
  • ASP.NET Dictionary 的基本用法示例介绍
  • Asp.net中的数据绑定Eval和Bind应用示例
  • ASP.NET中上传并读取Excel文件数据示例
  • asp.net禁止重复提交示例代码
  • asp.net页面中时间格式化的示例
  • asp.net datalist绑定数据后可以上移下移实现示例
  • asp.net 发送邮件的简单示例
  • asp.net DataSet转换成josn并输出示例
  • ASP.NET取得所有颜色值示例
  • asp.net使用jQuery获取RadioButtonList成员选中内容和值示例
  • asp.net获取网站绝对路径示例
  • asp.net错误处理Application_Error事件示例
  • asp.net利用存储过程实现模糊查询示例分享
  • asp.net Timer定时器用法示例
  • asp.net在图片上添加水印效果的代码示例
  • asp.net实现找回密码功能的代码
  • asp.net发邮件找回密码的功能
  • asp.net实现忘记密码找回的代码
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • IIS7配置ASP详细错误信息发送到浏览器显示的方法
  • 编个客户端,如何向类似"http://www.csdn.net/expert/index.asp?room=参数"发送参数?
  • asp.net SmtpClient发送邮件的代码
  • asp.net 邮件发送类的简单实例
  • asp.net SmtpClient发送邮件
  • Asp.net 自动发送邮件的实例代码
  • asp.net发送邮件示例分享
  • asp.net发送邮件并在正文中插入图片的代码分享
  • asp.net发送邮件的方法汇总
  • ASP.NET之 Ajax相关知识介绍及组件图
  • 我想了解一些关于Java怎样与Asp或Asp.net结合方面在未来发展方向的问题?
  • asp.net UrlEncode对应asp urlencode的处理方法
  • asp.net实例 定义和使用asp:AccessDataSource
  • win2008 r2 服务器环境配置(FTP/ASP/ASP.Net/PHP)
  • asp与asp.net的session共享
  • 如何在unix下发布asp?
  • 怎么让Apache支持Asp?
  • ??谁能把ASP代码改为JSP的
  • Linux平台下哪种方法实现ASP好?
  • ASP和ASP.Net共享Session解决办法
  • 通过socket和asp打交道
  • 犹豫中……,到底是选择ASP,还是JSP?
  • asp 是否 可用applet标签?帮忙!!
  • asp.net判断数据库表是否存在 asp.net修改表名的方法
  • 新人提问:asp+access的程序在linux下怎么改?
  • 用JAVA APPLET做的交互式网页和ASP、PHP做的相比有什么优势呢?
  • asp.net文字水印功能简单代码
  • asp里面可否使用java写的邮件,给30分.
  • asp与Jsp可否在iis中共存的问题
  • 实现Asp与Asp.Net共享Session的方法


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    asp.net防止页面重复提交(示例) iis7站长之家