private void button1_Click(object sender, EventArgs e)
{
if (this.textBox1.Text == "thebovl_Admin" && this.textBox2.Text == "findpasswaseasyrightquestion")
{
int num1 = (int) MessageBox.Show("Welcome, thebovl!", "Welcome!");
}
else
{
int num2 = (int) MessageBox.Show("Username or password have error!", "Error");
}
} |
==> |