0

protected void cmdLogin_Click(オブジェクト送信者, EventArgs e) {

    Class1.con = CreateConnection();
    string str = "SELECT Ad_Regid from Admin_Profile WHERE Ad_Regid LIKE @TempPasscode";
    cmd = new SqlCommand(str, Class1.con);
    if(Class1.con.State==ConnectionState.Closed)
        Class1.con.Open();
        cmd.Parameters.AddWithValue("@TempPasscode", txtcurrentpwd.Text.Trim());
        SqlDataReader dr = cmd.ExecuteReader();

        if (dr.Read())
        {
            if (dr[0].ToString() == txtcurrentpwd.Text)
        {
                using (cmd = new SqlCommand("_insertAdminLogin", Class1.con))
                if (Class1.con.State == ConnectionState.Closed)
                Class1.con.Open();
                cmd.CommandType = System.Data.CommandType.StoredProcedure ;
                cmd.Parameters.AddWithValue("@AdminType", ddltype.SelectedItem.Text);
                cmd.Parameters.AddWithValue("@AdminUsrname", txtuname.Text);
                cmd.Parameters.AddWithValue("@AdminPwd", txtconfirmpwd.Text);

                **using cmd.ExecuteNonQuery();**
         }
            else
            {
                ClientScript.RegisterStartupScript(GetType(), "Warning", "javascript:alert('Temporary Password Does not Match!');", true);
            }
         }
        Class1.con.Close();
}    

3 つのフィールドを保存しようとしていますが、開いているデータ リーダーが 1 つあることを示しています。「閉じる必要があります」...しかし、同じ用途に using キーワードを使用しています....

助けてください!!

4

1 に答える 1