Exemplo n.º 1
0
    }//end clearinputs 


    //bind customer grid view
    private dsAccounts BindCustomerGridView()
    {
        
        string tempPath = Server.MapPath("~/App_Data/Accounts.mdb");
        clsDataLayer myDataLayer = new clsDataLayer(tempPath);

        dsAccounts customerListing = myBusinessLayer.SelectAllCustomers();

        gvCustomerList.DataSource = customerListing.tblCustomers;

        //binding customer list griedview
        gvCustomerList.DataBind();
        Cache.Insert("CustomerDataSet", customerListing);

        return customerListing;
    }