hi guys,
I am using Visual Studio 2005. I have a dropdown list that has an associated SQLdatasource. I also have a textbox below the dropdown list that allows you to add items to the table that the datasource is associated with.After entering a new item into the table that the datasource is tied to, i would like to "refresh" the dropdown list so this is what i did
manuDropDownLis t.Items.Clear() ;
manuDropDownLis t.DataBind();
my problem is that i have the first item in the dropdown list as SELECT... and i set AppenddataBound Items=true in the drop down list properties however after databinding and stuff the SELECT... does not show up.
Everything works fine except that the SELECT... does not come back
How do i get it back?
please help
I am using Visual Studio 2005. I have a dropdown list that has an associated SQLdatasource. I also have a textbox below the dropdown list that allows you to add items to the table that the datasource is associated with.After entering a new item into the table that the datasource is tied to, i would like to "refresh" the dropdown list so this is what i did
manuDropDownLis t.Items.Clear() ;
manuDropDownLis t.DataBind();
my problem is that i have the first item in the dropdown list as SELECT... and i set AppenddataBound Items=true in the drop down list properties however after databinding and stuff the SELECT... does not show up.
Everything works fine except that the SELECT... does not come back
How do i get it back?
please help
Comment