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