I am populating a dropdown control using an sql datasource this works fine, my problem is how do I show in the dropdown "Loading..." while the dropdown is populating then remove it after the dropdown has been populated.
I tried this code in the Ondatabound event of the dropdown but working in the desired way.
if (dropdown1 != null)
{
dropdown1.Items.Insert(0, "- Model -");
}else{dropdown1.Items.Insert(0, "Loading...");}
Please Help.
Go to the complete details ...