Esempio n. 1
0
 private void MakeEmptyForm()
 {
     TxtLocation.Focus();
     if (!FlagAdd)
     {
         BtnSave.Visible = true;
     }
     BtnUpdate.Visible     = false;
     BtnDelete.Visible     = false;
     ddlCity.SelectedValue = "0";
     TxtLocation.Text      = string.Empty;
     TxtSearch.Text        = string.Empty;
     BindCombo();
     ReportGrid(StrCondition);
 }
Esempio n. 2
0
    protected void GrdReport_ItemCommand(object source, RepeaterCommandEventArgs e)
    {
        try
        {
            switch (e.CommandName)
            {
            case ("Select"):
            {
                if (Convert.ToInt32(e.CommandArgument) != 0)
                {
                    ViewState["EditID"] = Convert.ToInt32(e.CommandArgument);
                    DS = Obj_PR.GetLocationForEdit(Convert.ToInt32(e.CommandArgument), out StrError);
                    if (DS.Tables.Count > 0 && DS.Tables[0].Rows.Count > 0)
                    {
                        TxtLocation.Text      = DS.Tables[0].Rows[0]["LocationName"].ToString();
                        ddlCity.SelectedValue = DS.Tables[0].Rows[0]["CityId"].ToString();
                    }
                    else
                    {
                        MakeEmptyForm();
                    }
                    DS     = null;
                    Obj_PR = null;
                    if (!FlagEdit)
                    {
                        BtnUpdate.Visible = true;
                    }
                    BtnSave.Visible = false;
                    if (!FlagDel)
                    {
                        BtnDelete.Visible = true;
                    }
                    TxtLocation.Focus();
                }

                break;
            }
            }
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }
Esempio n. 3
0
    protected void BtnSave_Click(object sender, EventArgs e)
    {
        int InsertRow = 0;

        try
        {
            DS = Obj_PR.ChkDuplicate(TxtLocation.Text.Trim(), out StrError);
            if (DS.Tables[0].Rows.Count > 0)
            {
                obj_Comm.ShowPopUpMsg("Location Name Already Exist..!", this.Page);
                TxtLocation.Focus();
            }
            else
            {
                Entity_PR.LocationName = TxtLocation.Text.Trim();

                if (Convert.ToInt32(ddlCity.SelectedValue) > 0)
                {
                    Entity_PR.CityId = Convert.ToInt32(ddlCity.SelectedValue);
                }
                else
                {
                    obj_Comm.ShowPopUpMsg("Select City First..!", this.Page);
                    ddlCity.Focus();
                    return;
                }
                Entity_PR.LoginId   = Convert.ToInt32(Session["UserId"]);
                Entity_PR.LoginDate = DateTime.Now;
                InsertRow           = Obj_PR.InsertRecord(ref Entity_PR, out StrError);

                if (InsertRow != 0)
                {
                    obj_Comm.ShowPopUpMsg("Record Saved Successfully", this.Page);
                    MakeEmptyForm();
                    Entity_PR = null;
                    obj_Comm  = null;
                }
            }
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }
Esempio n. 4
0
 private void GetEditRecord()
 {
     if (DS.Tables.Count > 0 && DS.Tables[0].Rows.Count > 0)
     {
         TxtLocation.Text      = DS.Tables[0].Rows[0]["LocationName"].ToString();
         ddlCity.SelectedValue = DS.Tables[0].Rows[0]["CityId"].ToString();
     }
     else
     {
         MakeEmptyForm();
     }
     DS     = null;
     Obj_PR = null;
     if (!FlagEdit)
     {
         BtnUpdate.Visible = true;
     }
     BtnSave.Visible = false;
     if (!FlagDel)
     {
         BtnDelete.Visible = true;
     }
     TxtLocation.Focus();
 }