All Tags »
DropDownList Databinding
Sorry, but there are no more tags available to filter with.
-
Hello,
We are using ES 2007, and facing an issue while loading data from the method in a component . We are using two project one for web application and another one is business logic.
One more information is that we are using another tool in the project is LLBLGen which is also a similar tool like entity ...
-
Here is an example...Code:private void PopulateCountriesDropDownList()
{
CountryCollection countries = new CountryCollection();
countries.Query.OrderBy(countries.Query.Abbreviation.Ascending);
if (countries.LoadAll())
{
CountryDropDownList.DataSource = countries;
CountryDropDownList.DataTextField = ...