Exemplo n.º 1
0
        private void PopulatedGridView()
        {
            List <Country> countries = new List <Country>();

            countries = countryManager.GetAllCountryList();
            countryGridView.DataSource = countries;
            countryGridView.DataBind();
        }