你好,evryone可以帮我吗...我在Windows窗体应用程序中使用 visual studio community 2015 我有一个代码我有 textBox 这个名字是用户名另一个是密码,最后一个是登录如果用户想要登录,它会在这里遇到树时间错误我自动想要的问题显示忘记密码以及如果用户登录表单时出现树时错误,如何恢复密码。在我进入我的数据库表单之前,我不知道你能帮忙解释一下吗。
这是我的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SQLSERVER_VISUALSTUDIO_COMMUNITY
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
txt_Password.PasswordChar = '*';
}
private void txt_login_Click(object sender, EventArgs e)
{
if (txt_USername.Text == "" && txt_Password.Text == "")
{
MessageBox.Show("Please enter your password and user_name");
txt_USername.Clear();
txt_Password.Clear();
}
else if (txt_USername.Text == "jondygonzales" && txt_Password.Text == "sharkwebcaster")
{
MessageBox.Show("successfully log_in");
Form1 f = new Form1();
f.Show();
Form2 main = new Form2();
main.Show();
this.Hide();
}
}
}
}
答案 0 :(得分:0)
您需要做的是保留一个计数器,当用户名和密码无效时,您将增加一个。
检查此变量值,当它变为3时,向用户显示密码恢复表单。
public partial class Form1 : Form
{
int loginAttemps = 0;
public Form1()
{
InitializeComponent();
txt_Password.PasswordChar = '*';
}
private void txt_login_Click(object sender, EventArgs e)
{
if (txt_USername.Text == "" && txt_Password.Text == "")
{
MessageBox.Show("Please enter your password and user_name");
txt_USername.Clear();
txt_Password.Clear();
}
else if (txt_USername.Text == "jondygonzales" && txt_Password.Text == "sharkwebcaster")
{
loginAttempts = 0;
MessageBox.Show("successfully log_in");
Form1 f = new Form1();
f.Show();
Form2 main = new Form2();
main.Show();
this.Hide();
}
else
{
loginAttempts += 1;
if(loginAttemps == 3)
{
RecoveryForm recForm = new RecoveryForm(); // You need to use correct Form here.
recForm.Show();
this.Hide();
}
}
}
}