Beispiel #1
0
        private void PopulateGrid()
        {
            string query = this.txtSearch.Text.Trim();

            DataView dtVw = newService.GetAll(query);

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