我有一个从数据库中的成员表中检索电子邮件的文本框。用户可以编辑他们的电子邮件并更新新的电子邮件。我的问题是,如何用新电子邮件替换旧电子邮件?sql的查询是什么?
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Connection"].ConnectionString);
SqlCommand cmd = new SqlCommand("Insert into aspnet_membership("i dont know how whether to write all columns or only email);
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@email", Textbox2.Text);