0

我有一个帐户页面,用户可以在其中查看他们的帐户信息。我希望他们能够在这里更改密码。我设法实现它的方式如下:

网络服务:

[WebMethod]
    public string ChangePassword(DataSet ds)
    {
        string database = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|/dvd_forum.accdb;Persist Security Info=True";
        OleDbConnection myConn = new OleDbConnection(database);
        OleDbDataAdapter myDataAdapter = new OleDbDataAdapter("Select * from Users", myConn);
        OleDbCommandBuilder builder = new OleDbCommandBuilder(myDataAdapter);
        builder.QuotePrefix = "[";
        builder.QuoteSuffix = "]";
        myConn.Open();
        myDataAdapter.Update(ds, "Users");
        myConn.Close();
        return "Password changed!";
    }

前台代码:

<asp:Label ID="username" runat="server" Text=""></asp:Label><span>'s Account</span><br />
<asp:TextBox ID="ChangePasswordInput" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Save" 
    onclick="ChangePassword_Click" />
<asp:Label ID="Label2" runat="server" Text=""></asp:Label><asp:RequiredFieldValidator id="RequiredFieldValidator3" runat="server" ErrorMessage="Required!" ControlToValidate="ChangePasswordInput"></asp:RequiredFieldValidator>
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>

回码:

public partial class Account : System.Web.UI.Page
{

public static DataSet ds;

protected void Page_Load(object sender, EventArgs e)
{
    if (User.Identity.IsAuthenticated)
    {
        username.Text = User.Identity.Name;
    }

    localhost.Service1 myws = new localhost.Service1();
    ds = myws.GetUserAcc(User.Identity.Name);
    GridView1.DataSource = ds;
    GridView1.DataBind();
}
protected void ChangePassword_Click(object sender, EventArgs e)
{
    //change password
    int i = GridView1.SelectedIndex;
    ds.Tables["Users"].Rows[i]["password"] = ChangePasswordInput.Text;
    GridView1.DataSource = ds;
    GridView1.DataBind();
    localhost.Service1 myws = new localhost.Service1();
    Label2.Text = myws.ChangePassword(ds);
}
}

问题是我必须在更改密码之前选择 gridview 中的行。有什么办法可以让我自动选择行,因为只有一行。或者我如何在不先选择行的情况下以不同的方式对其进行编码?

谢谢。

4

1 回答 1

0

您的 GridView 和按钮是页面上的单独控件,因此如果不选择 GridView 中的行,您无法确定选择哪个用户进行密码更改。如果您可以将按钮放在 GridView 内,IMO 会更好。制作一个可编辑的 GridView

编辑:根据您的评论,您的网格视图中只有一行,我真的看不出将 Gridview 与数据表一起使用的原因。您可以有一个标签显示用户名和新密码的文本框。(您可能想重新确认密码)。然后在您的网络服务中,您可以传递新密码(如果加密更好),而不是传递数据表,然后使用 SQL Update 语句更新数据。但是,如果您仍然想使用 GridView,那么您可以直接在 Row 索引中传递 0 而不是获取 selectedIndex。您可以检查 dataTable 是否包含任何行。

if(ds.Tables.Count > 0 && ds.Tables["Users"] != null && ds.Tables["Users"].Rows.Count > 0)
{
    ds.Tables["Users"].Rows[0]["password"] = ChangePasswordInput.Text;
    GridView1.DataSource = ds;
    GridView1.DataBind();
    localhost.Service1 myws = new localhost.Service1();
    Label2.Text = myws.ChangePassword(ds);
}
于 2012-05-16T16:23:05.543 回答