Dec 13, 2004 #1 marcasii Programmer Aug 27, 2001 109 AU Hi, Is there an easy way of populating a DropDownList with the numbers 1 - 30 in C#?
Dec 13, 2004 #2 BoulderBum Programmer Jul 11, 2002 2,179 US for( int i = 1; i <= 30; i++ ) DropDownList1.Items.Add( i.ToString() ); Upvote 0 Downvote