在Windows窗体C#中更新密码

时间:2013-10-23 02:33:19

标签: c# winforms forms passwords

我在C#中创建登录应用程序(Windows窗体),并在Visual Studio 2012中使用.NET Framework 4.5。

我已手动输入用户名和密码到数据库中。

所以在 LoginForm 中,用户输入用户名和密码,我的代码如下:

public partial class LoginForm : Form
{
    public LoginForm()
    {
        InitializeComponent();
    }

    System.Data.SqlServerCe.SqlCeConnection con;
    System.Data.SqlServerCe.SqlCeDataAdapter da;
    DataSet ds1;
    int MaxRows = 0;
    int inc = 0;

    private void go_Click(object sender, EventArgs e)
    {
        DataRow dRow = ds1.Tables["Users"].Rows[inc];
        if (EnterMasterPassword.Text == dRow.ItemArray.GetValue(1).ToString())
        {
            this.DialogResult = DialogResult.OK;
            this.Close();
        }
        else
            MessageBox.Show("Try again");
    }

    private void LoginForm_Load(object sender, EventArgs e)
    {
        con = new System.Data.SqlServerCe.SqlCeConnection();
        con.ConnectionString = "Data Source=C:\\PMDatabase.sdf";
        con.Open();
        ds1 = new DataSet();
        string sql = "SELECT * From tbl_login";
        da = new System.Data.SqlServerCe.SqlCeDataAdapter(sql, con);
        da.Fill(ds1, "Users");
        MaxRows = ds1.Tables["Users"].Rows.Count;
        con.Close();
    }
}

*其中 go 是一个按钮*

这完美无缺,用户登录成功。但我不知道如何使用Windows窗体向用户提供更新/更改密码功能。如何更新数据库?还有用户名和密码字段?

到目前为止,我已完成以下程序:

当用户点击“更新密码”按钮时,会打开一个新表单(名称:Form7),其中包含3个标签,3个文本框和一个按钮,即: -

TextBox1中 - > CurrentPassword

TextBox2中 - > NEWPASSWORD

TextBox3 - > ConfirmNewPassword

按钮 - > UpdateUsrPassword

Form7的代码如下: -

public partial class Form7 : Form
    {
        public PasswordsAndData()
        {
            InitializeComponent();
        }
        System.Data.SqlServerCe.SqlCeConnection con1;
        System.Data.SqlServerCe.SqlCeDataAdapter da1;
        DataSet ds2;
        int totalPasswords = 0, inc = 0;
        private void Form7_Load(object sender, EventArgs e)
        {
            con1 = new System.Data.SqlServerCe.SqlCeConnection();
            con1.ConnectionString = "Data Source=C:\\PMDatabase.sdf";
            con1.Open();
            ds2 = new DataSet();
            string sql = "SELECT * From tbl_UserData";
            da1 = new System.Data.SqlServerCe.SqlCeDataAdapter(sql, con1);
            da1.Fill(ds2, "UserData");
            totalPasswords = ds2.Tables["UserData"].Rows.Count;
            con1.Close();
        }
        private void UpdateUsrPassword_Click(object sender, EventArgs e)
        {
            if(NewPassword.Text == ConfirmNewPassword.Text)
            {
                DataRow dRow1 = ds2.Tables["UserData"].NewRow();
                dRow1[1] = ConfirmNewPassword.Text;            
                ds2.Tables["UserData"].Rows.Add(dRow1);
                UpdateDB();
                MessageBox.Show("Password Updated");
                totalPasswords++;
                inc = totalPasswords - 1;
            }
        }
        private void UpdateDB()
        {
            System.Data.SqlServerCe.SqlCeCommandBuilder cb1;
            cb1 = new System.Data.SqlServerCe.SqlCeCommandBuilder(da1);
            cb1.DataAdapter.Update(ds2.Tables["UserData"]);
        }
    }

但上面的代码没有更新密码。如何纠正上面的代码?所以它的工作非常完美。

请指导我。

2 个答案:

答案 0 :(得分:0)

DataRow dRow1 = ds2.Tables["UserData"].NewRow();
dRow1[1] = ConfirmNewPassword.Text;            
ds2.Tables["UserData"].Rows.Add(dRow1);
UpdateDB();

您在UpdateUsrPassword_Click中添加了一行,但是您不应该更新现有的行吗?

你应该这样做:

  1. 从db
  2. 获取实际密码
  3. 更新包含实际密码的现有行

答案 1 :(得分:0)

而不是添加一行,你应该使用这样的东西:

dataSet1.Tables["Customers"].Rows[4]["CompanyName"] = "Updated Company Name";

这会更新数据集中的值,然后您可以将其推送回数据库。

源代码,提供有关编辑数据集中值的更多信息:

  

https://msdn.microsoft.com/en-us/library/tat996zc.aspx