protected void GvNationality_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;
        GvNationality.DataSource = dt;
        GvNationality.DataBind();
        AllPageCode();
    }
 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 + "'";
         }
         else if (ddlOption.SelectedIndex == 2)
         {
             condition = "convert(" + ddlFieldName.SelectedValue + ",System.String) like '%" + txtValue.Text + "%'";
         }
         else
         {
             condition = "convert(" + ddlFieldName.SelectedValue + ",System.String) Like '" + txtValue.Text + "%'";
         }
         DataTable dtCurrency = (DataTable)Session["dtNationality"];
         DataView  view       = new DataView(dtCurrency, condition, "", DataViewRowState.CurrentRows);
         GvNationality.DataSource = view.ToTable();
         Session["dtFilter"]      = view.ToTable();
         lblTotalRecords.Text     = Resources.Attendance.Total_Records + " : " + view.ToTable().Rows.Count + "";
         GvNationality.DataBind();
         AllPageCode();
     }
 }
    protected void GvNationality_PageIndexChanging(object sender, GridViewPageEventArgs e)
    {
        GvNationality.PageIndex = e.NewPageIndex;
        DataTable dt = (DataTable)Session["dtFilter"];

        GvNationality.DataSource = dt;
        GvNationality.DataBind();

        AllPageCode();
    }
    private void FillGrid()
    {
        DataTable dtBrand = objDesg.GetNationalityMaster(Session["CompId"].ToString().ToString());

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