我正在尝试在我的 Web 应用程序中使用 1 个按钮更新 2 个不同的表。我目前正在使用 asp.net 来开发我的网络应用程序。我想知道是否可以从 2 个不同的表中更新 2 个不同的列。
这是我的后端代码
protected void btnAssign_Click(object sender, EventArgs e)
{
//SqlConnection connAdd = new SqlConnection("Data Source = localhost; Initial Catalog = project; Integrated Security= SSPI");
//connAdd.Open();
//string mySQL;
//mySQL = "Update LoginRegisterPoliceOfficer Set caseid ='" + lblCID.Text + "' where fullname ='" + DDLpolice.SelectedItem.Text + "'";
//SqlCommand cmdAdd = new SqlCommand(mySQL, connAdd);
//cmdAdd.ExecuteNonQuery();
//connAdd.Close();
SqlConnection connAdd = new SqlConnection("Data Source = localhost; Initial Catalog = project; Integrated Security= SSPI");
connAdd.Open();
string mySQLL;
mySQLL = "Update Report Set handle = 'handled' where caseid='"+lblCID.Text+"'";
SqlCommand cmdAdd = new SqlCommand(mySQLL, connAdd);
cmdAdd.ExecuteNonQuery();
connAdd.Close();
}
我只能更新 1,但无法更新 2。因此,我注释掉了我的一个 sql 代码。