在Visual Studio 2008里用C#编写修改用户密码的代码
if (textBox2.Text != textBox3.Text){
MessageBox.Show("确认密码错误!","提示",MessageBoxButtons .OK ,MessageBoxIcon.Warning );
}
else if (textBox1.Text !=txtPwd.Text )
{
MessageBox.Show("旧密码确认错误!","提示",MessageBoxButtons .OK ,MessageBoxIcon.Warning );
}
else
{
SqlDataAdapter mydr=new SqlDataAdapter ();
SqlCommand com = new SqlCommand("update LoginTable set LoginPwd=@LoginPwd where Username=@Username");
com.Parameters.AddWithValue("@LoginPwd", textBox3.Text);
mydr.UpdateCommand = com;
mydr.UpdateCommand.ExecuteNonQuery();
MessageBox.Show("修改成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
this.Close();
这是我的代码 不知道哪里出错了 该怎么修改~~高手求解。。。。