我試圖用我的web應用程序中的1個按鈕更新2個不同的表格。我目前正在使用asp.net開發我的web應用程序。我想知道是否有可能從2個不同的表中更新2個不同的列。用asp.net中的1個按鈕更新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,但失敗,第二次更新。因此,我註釋掉了我的一個sql代碼。
謝謝你的工作。 :) –