密码验证出错
实现一个单击命令,当text1的text属性为123456的时候就通过验证并出现form2 .当密码不正确时候,显示对话框,提示密码错误
我写了一下代码 :
private void button1_Click(object sender, System.EventArgs e)
{
string a=this.textBox1.Text.ToString();
string b="123456";
if (a!=b);
{ MessageBox.Show("the password is wrong!","mention",MessageBoxButtons.OK,MessageBoxIcon.Information);
return;
}
if (a==b);
{ Form form2=new Form2();
this.Close();
form2.Show();
}
}
大家看看错误在什么地方?
[此贴子已经被作者于2005-10-28 15:06:35编辑过]