Is there a way of adding the values 1-15 to an asp dropdownlist without having to do each one individually...
I currently have:
ddlAdults.Items.Inser
for(int i=0;i<15;i++) { ddlAdults.Items.Insert(i, new ListItem((i+1).toString(), (i+1).toString())); }