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
ddlAdults.DataSource = Enumerable.Range(1, 15) ddlAdults.DataBind()