Skip to content
Loading
Dropdown list with others option with customizable input
  • Rajanikant Hawaldar
    1. myDropDownlist.DataSource = [Your data source];  
    2. myDropDownlist.DataBind();  
    3.   
    4. ListItem myDefaultItem = new ListItem("(Other)"string.Empty);  
    5. myDefaultItem.Selected = true;  
    6. myDropDownlist.Items.Insert(0, myDefaultItem);  
  • Can you refer any links
  • Rajanikant Hawaldar
    possible please try it