示例#1
0
        /// <summary>
        /// Set Grid Data source
        /// </summary>
        /// <param name="addRow"></param>
        /// <param name="deleteRow"></param>e


        private void BindGrid(bool addRow, bool deleteRow)
        {
            LivelihoodBLL objLivelihoodBLL = new LivelihoodBLL();

            grdlivelihood.DataSource = objLivelihoodBLL.GetALLLivelihood();
            grdlivelihood.DataBind();
        }
示例#2
0
        /// <summary>
        /// Update Database Make data as Obsoluted
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void IsObsolete_CheckedChanged(Object sender, EventArgs e)
        {
            string message = string.Empty;

            try
            {
                CheckBox    chk = (CheckBox)sender;
                GridViewRow gr  = (GridViewRow)chk.Parent.Parent;
                ViewState["ITEMID"] = ((Literal)gr.FindControl("litITEMID")).Text;
                LivelihoodBLL objLivelihoodBLL = new LivelihoodBLL();
                message = objLivelihoodBLL.ObsoleteLivelihood(Convert.ToInt32(ViewState["ITEMID"]), Convert.ToString(chk.Checked));
                if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                {
                    message = "Data updated successfully";
                }
                BindGrid(false, true);
                if (message != "")
                {
                    ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Added", "alert('" + message + "');", true);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
示例#3
0
        /// <summary>
        /// Set edit mode for edit comand
        /// Delete data from the database for delete comand
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void grdlivelihood_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            string message = string.Empty;

            if (e.CommandName == "EditRow")
            {
                ViewState["ITEMID"] = e.CommandArgument;
                int         itemid = Convert.ToInt32(ViewState["ITEMID"]);
                GridViewRow row    = (GridViewRow)((ImageButton)e.CommandSource).NamingContainer;
                if (row != null)
                {
                    livelihoodTextBox.Text = row.Cells[1].Text.ToString();
                }
                SetUpdateMode(true);
                ScriptManager.RegisterStartupScript(this, this.GetType(), "Added", "setDirty();", true);
            }
            else if (e.CommandName == "DeleteRow")
            {
                LivelihoodBLL objLivelihoodBLL = new LivelihoodBLL();
                message = objLivelihoodBLL.DeleteLivelihood(Convert.ToInt32(e.CommandArgument));
                if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                {
                    message = "Data deleted successfully";
                }

                cleardetails();
                SetUpdateMode(false);
                BindGrid(false, true);
            }

            if (message != "")
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Added", "alert('" + message + "');", true);
            }
        }
示例#4
0
        /// <summary>
        /// To save details to database
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private string Insert()
        {
            string message = string.Empty;
            string uID     = Session["USER_ID"].ToString();

            objLivelihood = new LivelihoodBO();

            objLivelihood.ITEMNAME    = livelihoodTextBox.Text.ToString();
            objLivelihood.Createddate = System.DateTime.Now;
            objLivelihood.Isdeleted   = "False";
            objLivelihood.Createdby   = Convert.ToInt32(Session["USER_ID"]);
            LivelihoodBLL objLivelihoodBLL = new LivelihoodBLL();

            try
            {
                message = objLivelihoodBLL.AddLivelihood(objLivelihood);

                if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                {
                    message = "Data saved successfully";
                    cleardetails();
                }
            }
            catch (Exception ex)
            {
                string errorMsg = ex.Message.ToString();
            }
            finally
            {
                objLivelihoodBLL = null;
            }
            return(message);
        }
示例#5
0
        /// <summary>
        /// calls method save details to the database
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string AlertMessage = string.Empty;
            string message      = string.Empty;

            try
            {
                if (btnSave.Text == "Save")
                {
                    message = Insert();

                    if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                    {
                        message = "Data saved successfully";
                        cleardetails();
                    }
                    BindGrid(true, true);
                }
                else
                {
                    string uID = Session["USER_ID"].ToString();

                    int itemid = Convert.ToInt32(ViewState["ITEMID"]);
                    objLivelihood          = new LivelihoodBO();
                    objLivelihood.ITEMNAME = livelihoodTextBox.Text.ToString();

                    objLivelihood.Createdby = Convert.ToInt32(uID);
                    LivelihoodBLL objLivelihoodBLL = new LivelihoodBLL();
                    message = objLivelihoodBLL.UpdateLivelihood(objLivelihood, itemid);

                    if (string.IsNullOrEmpty(message) || message == "" || message == "null")
                    {
                        message = "Data updated successfully";
                        // ClearDetails();
                        cleardetails();
                        BindGrid(true, true);
                        SetUpdateMode(false);
                    }
                    //BindGrid(true, true);
                    //cleardetails();
                }
                btnSave.Text = "Save";
            }
            catch (Exception ex)
            {
                string errorMsg = ex.Message.ToString();
                Response.Write(errorMsg);
            }
            ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Added", "alert('" + message + "');", true);
        }
示例#6
0
        /// <summary>
        /// To delete row based on ID
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void grdlivelihood_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            int           itemid           = Int32.Parse(grdlivelihood.DataKeys[e.RowIndex].Value.ToString());
            LivelihoodBLL objLivelihoodBLL = new LivelihoodBLL();

            try
            {
                objLivelihoodBLL.DeleteLivelihood(itemid);
                BindGrid(true, true);
            }
            catch (Exception ee)
            {
                string errorMsg = ee.Message.ToString();
            }
            finally
            {
                objLivelihoodBLL = null;
            }

            grdlivelihood.EditIndex = -1;
            BindGrid(true, true);
        }