if (datepicker.Text == "" || TextBox2.Text == "")
{
Label20.Text = "Kayıt Başarısız,Lütfen Tarih ve/veya Miktar Bilgisini Doldurunuz.";
}
else
{
SqlCommand FaaliyetDuzenle = new SqlCommand();
FaaliyetDuzenle.Connection = serkan;
FaaliyetDuzenle.CommandText = String.Format("UPDATE DEFaaliyetSatisBilgileri SET DEGG = '" + Convert.ToDecimal(TextBox2.Text) + "' WHERE DETarih= CONVERT(DATETIME,'" + Convert.ToDateTime(datepicker.Text) + "',104) and DETesis ='" + Label10.Text + "' and DEFaaliyet = '" + DropDownList1.SelectedValue + "'");
serkan.Open();
FaaliyetDuzenle.ExecuteNonQuery();
serkan.Close();
}
0 Comments