用C#和sql做系统 修改密码一直出错,求大神!!
页面用户:密码:新密码:确定取消代码:前面数据库连接忽略stringtname="";stringpassword="";try{conn.Open();SqlDataR...
页面 用户:
密码:
新密码:
确定 取消
代码:
前面数据库连接忽略
string tname = "";
string password = "";
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
if (reader.Read())
{
tname = reader[0].ToString();
password = reader[1].ToString();
}
reader.Close();
conn.Close();
}
catch { }
if (this.oldpassword.Text=="" )
{ MessageBox.Show("请输入密码!"); }
else
{
if (newpassword.Text == "")
{ MessageBox.Show("请输入新的密码!"); }
else
{
if (password.Trim() != this.oldpassword.Text)
{
MessageBox.Show("对不起,您的密码不正确!");
return;
}
}
}
comm.CommandText = "updata 用户登录 set 密码='" + this.newpassword.Text + "'where 用户名='" + tname + "'";
try
{
conn.Open();
comm.ExecuteNonQuery();
conn.Close();
}
catch (SqlException er)
{
if (conn.State == ConnectionState.Open)
conn.Close();
MessageBox.Show("无法修改此密码!");
return;
}
MessageBox.Show("您好!您已成功修改该密码!");
this.Close();
} 展开
密码:
新密码:
确定 取消
代码:
前面数据库连接忽略
string tname = "";
string password = "";
try
{
conn.Open();
SqlDataReader reader = comm.ExecuteReader();
if (reader.Read())
{
tname = reader[0].ToString();
password = reader[1].ToString();
}
reader.Close();
conn.Close();
}
catch { }
if (this.oldpassword.Text=="" )
{ MessageBox.Show("请输入密码!"); }
else
{
if (newpassword.Text == "")
{ MessageBox.Show("请输入新的密码!"); }
else
{
if (password.Trim() != this.oldpassword.Text)
{
MessageBox.Show("对不起,您的密码不正确!");
return;
}
}
}
comm.CommandText = "updata 用户登录 set 密码='" + this.newpassword.Text + "'where 用户名='" + tname + "'";
try
{
conn.Open();
comm.ExecuteNonQuery();
conn.Close();
}
catch (SqlException er)
{
if (conn.State == ConnectionState.Open)
conn.Close();
MessageBox.Show("无法修改此密码!");
return;
}
MessageBox.Show("您好!您已成功修改该密码!");
this.Close();
} 展开
展开全部
reader[index],是不是索引错误;
换这个试一下
reader['password'] //password是你数据库中的密码字段,
//根据某一条件(学号)进行查询 如何在C#中显示数据库的查询结果
conn.Open();
string adpstr=string.Format("select * from 表 where xuehao={0}",要查询的学号);
// xuehao 数据库中的学号字段,如果学号是非值类型 {0}要加单引号啊 xuehao='{0}'
SqlDataAdapter sqladp = new SqlDataAdapter(adpstr, sqlcon);
DataSet dataset = new DataSet();
sqladp.Fill(dataset);
// data_std 为要绑定的数据控件ID,比如GridView
data_std.DataSource = dataset;
data_std.DataBind();
dataset.Dispose();
sqladp.Dispose();
conn.Close();
换这个试一下
reader['password'] //password是你数据库中的密码字段,
//根据某一条件(学号)进行查询 如何在C#中显示数据库的查询结果
conn.Open();
string adpstr=string.Format("select * from 表 where xuehao={0}",要查询的学号);
// xuehao 数据库中的学号字段,如果学号是非值类型 {0}要加单引号啊 xuehao='{0}'
SqlDataAdapter sqladp = new SqlDataAdapter(adpstr, sqlcon);
DataSet dataset = new DataSet();
sqladp.Fill(dataset);
// data_std 为要绑定的数据控件ID,比如GridView
data_std.DataSource = dataset;
data_std.DataBind();
dataset.Dispose();
sqladp.Dispose();
conn.Close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询