Showing posts with label year. Show all posts
Showing posts with label year. Show all posts

C# Dynamic DropDownList of Year

Thursday, June 24, 2010

private void fillDropdown()
    {
        int year = DateTime.Now.Year;
        year -= 1;

        for (int i = 0; i <= 100; i++)
        {
            ddl_year.Items.Add(year.ToString());
            year--;
        }
    }


**************************LINKS******************************

I have created a new better blog:

My Youtube channel:

**************************LINKS******************************