zizigolo110 wrote:
how do i load table information into aspxcombobox ?
As AJ Suggests Try to Extract the data into DataSource.You Add The DataSource By the following Way
DropDown1.DataSource = YourDataSource;
DropDown1.DataTextField = "Name";
DropDown1.DataValueField = "Id";
DropDown1.DataBind();
DropDown1.Items.Insert(0, "Select");
Welcome To Code Project:rose:
MyFirstArticle MenuControlSelectedItem Why Do Some People Forget To Mark as Answer .If It Helps.