当前位置: 首页>>代码示例>>C#>>正文


C# User.getRecoveryEmail方法代码示例

本文整理汇总了C#中User.getRecoveryEmail方法的典型用法代码示例。如果您正苦于以下问题:C# User.getRecoveryEmail方法的具体用法?C# User.getRecoveryEmail怎么用?C# User.getRecoveryEmail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在User的用法示例。


在下文中一共展示了User.getRecoveryEmail方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Page_Load

 protected void Page_Load(object sender, EventArgs e)
 {
     u = (User)Session["User"];
     if (u == null)
         Response.Redirect("Login.aspx");
     if(!IsPostBack)
         Label1.Text += " " + u.getRecoveryEmail() + " and " + u.getRecoveryMobile();
 }
开发者ID:sriharshakappala,项目名称:ping,代码行数:8,代码来源:CantAccessYourAccount2.aspx.cs

示例2: Button1_Click

 protected void Button1_Click(object sender, EventArgs e)
 {
     User u = new User().getByEmailId(TextBox1.Text);
     if (u != null)
     {
         Session.Add("User", u);
         string body = "User Name : "+u.getUserName()+"\n"+
                       "Password  : "+u.getPassword();
         WebMail.Send("[email protected]", u.getRecoveryEmail(), "Account Information", body);
         Message.Send(u.getRecoveryMobile(), body);
         Response.Redirect("CantAccessYourAccount2.aspx");
     }
     else
         Label1.Text = "   No account found with that email address";
 }
开发者ID:sriharshakappala,项目名称:ping,代码行数:15,代码来源:CantAccessYourAccount.aspx.cs

示例3: Button2_Click

    protected void Button2_Click(object sender, EventArgs e)
    {
        u = new User().getById(TextBox1.Text);
        if (TextBox2.Text == u.getAnswer())
        {
            Session.Add("User", u);
            string body = "User Name : " + u.getUserName() + "\n" +
                          "Password  : " + u.getPassword();
            WebMail.Send("[email protected]", u.getRecoveryEmail(), "Account Information", body);
            Message.Send(u.getRecoveryMobile(), body);
            Response.Redirect("CantAccessYourAccount2.aspx");

        }
        else
            Label4.Text = "Incorrect answer";
    }
开发者ID:sriharshakappala,项目名称:ping,代码行数:16,代码来源:ForgetPassword1.aspx.cs

示例4: Button1_Click

 protected void Button1_Click(object sender, EventArgs e)
 {
     User u = new User().getById(TextBox1.Text);
     if (u != null)
     {
         if (u.getPassword() == TextBox2.Text)
         {
             Session.Add("User", u);
             Dummy d = Dummy.getById(TextBox1.Text);
             if(d == null)
                 Response.Redirect("Default2.aspx");
             else
                 Response.Redirect("./SignUpStep2.aspx?UserName="+u.getUserName()+"&Email="+u.getRecoveryEmail()+"&MobileNumber="+u.getRecoveryMobile());
         }
     }
     Label8.Text = "    Invalid Username or Password";
 }
开发者ID:sriharshakappala,项目名称:ping,代码行数:17,代码来源:Login.aspx.cs


注:本文中的User.getRecoveryEmail方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。