Ejemplo n.º 1
0
    private void GetGrd()
    {
        DataTable ds = new DataTable();

        try
        {
            ds = BusinessServices.Imaging_Admin_Tax();
            GvwCustomer.DataSource = ds;
            GvwCustomer.DataBind();
        }
        catch (Exception ex)
        {
        }
    }
Ejemplo n.º 2
0
    //binding Grid
    private void GetGrd()
    {
        DataTable ds = new DataTable();

        try
        {
            ds = BusinessServices.Imaging_Admin_Product(txtSearch.Text.Trim());
            GvwCustomer.DataSource = ds;
            GvwCustomer.DataBind();
        }
        catch (Exception ex)
        {
        }
    }
Ejemplo n.º 3
0
    public void GetGrd1()
    {
        DataTable ds = new DataTable();

        try
        {
            string Vertical = txtSearchVertical.Text;
            ds = BusinessServices.Imaging_Admin_Vertical_Get(txtSearchVertical.Text.Trim());
            GvwCustomer.DataSource = ds;
            GvwCustomer.DataBind();
        }
        catch (Exception ex)
        {
        }
    }