protected void btnUpdate_Click(object sender, EventArgs e) { OrderIfo order = new OrderIfo(); string orderID = GetOrderID(); order.OrderID = Convert.ToInt32(orderID); order.DateCreated = txtDateCreated.Text; order.DateShipped = txtShippedDate.Text; order.Verified = verifiedCheckBox.Checked; order.Canceled = canceledCheckBox.Checked; order.Completed = completedCheckBox.Checked; order.Comments = txtComments.Text; order.CustomerName = txtCustomerName.Text; order.CustomeEmail = txtCustomerEmail.Text; order.ShippingAddress = txtShippingAddress.Text; try { OrderAccess.OrderUpdate(order); } catch (Exception) { } lblStatus.Text = "İşlem Başarılı!"; SetEditMode(false); DenetimlerDoldur(orderID); }