Hey everyone,
I am using a RadCombBox on my page that i've binded to a database column.Now,i want it to show an initial value at page_load like select your Name.i am doing this--
not workin,am i missing something?..plz help
Thanks
Amit
I am using a RadCombBox on my page that i've binded to a database column.Now,i want it to show an initial value at page_load like select your Name.i am doing this--
if (!IsPostBack)
{ RadComboBox1.Items.Insert(0, new RadComboBoxItem("Select Your Name", "0")); RadComboBox1.SelectedIndex = 0;}Thanks
Amit