Exemplo n.º 1
0
        private void PopulateGrid()
        {
            string query = this.txtSearch.Text.Trim();

            DataView dtVw = newService.GetAll(query, 0);

            if (dtVw != null)
            {
                grdView.DataSource = dtVw;
                grdView.DataBind();
            }
        }