Beispiel #1
0
        protected void Button4_Click(object sender, EventArgs e)
        {
            string cDate = this.cashDate.Text;

            ListC_Jnal.DataSource = Executor_2.SearchTable(cDate);
            ListC_Jnal.DataBind();
        }
Beispiel #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!this.IsPostBack)
     {
         ListC_Jnal.DataSource = Executor_2.ShowAllTable();
         ListC_Jnal.DataBind();
     }
 }
Beispiel #3
0
        protected void Button1_Click(object sender, EventArgs e)
        {
            string cDate = this.cashDate.Text;
            string cAcnt = this.account.Text;
            string cSum  = this.summary.Text;
            string cRec  = this.receive.Text;
            string cPay  = this.pay.Text;

            Executor_2.InsertTable(cDate, cAcnt, cSum, cRec, cPay);

            ListC_Jnal.DataSource = Executor_2.ShowAllTable();
            ListC_Jnal.DataBind();
        }
Beispiel #4
0
        protected void ListC_Jnal_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            string ID = ListC_Jnal.DataKeys[e.RowIndex].Value.ToString();

            string connectionString = "Data source=localhost\\SQLExpress;Initial Catalog=Financials; Integrated Security=true";

            using (SqlConnection connection = new SqlConnection(connectionString))
            {
                SqlCommand command = new SqlCommand($@"DELETE FROM CashJournal WHERE ID = {ID}", connection);
                connection.Open();
                try
                {
                    command.ExecuteNonQuery();
                }
                catch (Exception ex)
                {
                    HttpContext.Current.Response.Write(ex);
                }

                ListC_Jnal.DataSource = Executor_2.ShowAllTable();
                ListC_Jnal.DataBind();
            }
        }