protected void btnbindrpt_Click(object sender, ImageClickEventArgs e)
 {
     if (ddlOption.SelectedIndex != 0)
     {
         string condition = string.Empty;
         if (ddlOption.SelectedIndex == 1)
         {
             condition = "convert(" + ddlFieldName.SelectedValue + ",System.String)='" + txtValue.Text.Trim() + "'";
         }
         else if (ddlOption.SelectedIndex == 2)
         {
             condition = "convert(" + ddlFieldName.SelectedValue + ",System.String) like '%" + txtValue.Text.Trim() + "%'";
         }
         else
         {
             condition = "convert(" + ddlFieldName.SelectedValue + ",System.String) Like '" + txtValue.Text.Trim() + "%'";
         }
         DataTable dtAdd = (DataTable)Session["dtCurrency"];
         DataView  view  = new DataView(dtAdd, condition, "", DataViewRowState.CurrentRows);
         GvAddress.DataSource = view.ToTable();
         Session["dtFilter"]  = view.ToTable();
         lblTotalRecords.Text = Resources.Attendance.Total_Records + " : " + view.ToTable().Rows.Count + "";
         GvAddress.DataBind();
         AllPageCode();
     }
 }
    protected void GvAddress_Sorting(object sender, GridViewSortEventArgs e)
    {
        DataTable dt      = (DataTable)Session["dtFilter"];
        string    sortdir = "DESC";

        if (ViewState["SortDir"] != null)
        {
            sortdir = ViewState["SortDir"].ToString();
            if (sortdir == "ASC")
            {
                e.SortDirection      = SortDirection.Descending;
                ViewState["SortDir"] = "DESC";
            }
            else
            {
                e.SortDirection      = SortDirection.Ascending;
                ViewState["SortDir"] = "ASC";
            }
        }
        else
        {
            ViewState["SortDir"] = "DESC";
        }

        dt = (new DataView(dt, "", e.SortExpression + " " + ViewState["SortDir"].ToString(), DataViewRowState.CurrentRows)).ToTable();
        Session["dtFilter"]  = dt;
        GvAddress.DataSource = dt;
        GvAddress.DataBind();
        AllPageCode();
    }
    protected void GvAddress_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        GvAddress.PageIndex = e.NewPageIndex;
        DataTable dt = (DataTable)Session["dtFilter"];

        GvAddress.DataSource = dt;
        GvAddress.DataBind();
        AllPageCode();
    }
    private void FillGrid()
    {
        DataTable dtBrand = objAddressM.GetAddressAllData(StrCompId);

        lblTotalRecords.Text  = Resources.Attendance.Total_Records + " : " + dtBrand.Rows.Count + "";
        Session["dtCurrency"] = dtBrand;
        Session["dtFilter"]   = dtBrand;
        if (dtBrand != null && dtBrand.Rows.Count > 0)
        {
            GvAddress.DataSource = dtBrand;
            GvAddress.DataBind();
        }
        else
        {
            GvAddress.DataSource = null;
            GvAddress.DataBind();
        }
        lblTotalRecords.Text = Resources.Attendance.Total_Records + " : " + dtBrand.Rows.Count.ToString() + "";
        AllPageCode();
    }