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 i As Integer = 1 To 15 ddlAdults.Items.Add(new ListItem(i.ToString(), i.ToString())) Next i