0
protected void Button6_Click(object sender, EventArgs e)
{
Random rnd = new Random();
string resetpassword = rnd.Next(5000, 100000).ToString();
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["HealthDBContext"].ConnectionString);
conn.Open();
string reset = "UPDATE Users SET" + " [email protected]" + " WHERE [email protected]";
SqlCommand com = new SqlCommand(reset, conn);
com.Parameters.AddWithValue("@pass", resetpassword);
com.Parameters.AddWithValue("@user", TextBox1.Text);
conn.Close();
}
由於某些原因,密碼未更新。更新聲明不起作用
OOOOH,請告訴我,你是不是採用明文存儲密碼,在實際應用中。 –
只有當你「插入」,「刪除」,「更新」時,才使用此方法'ExecuteNonQuery();'。等等 –