数字不来了是使用循环的DropDownlist

时间:2018-07-04 11:11:30

标签: c#

我想使用for循环在下拉列表中加载号码。

protected void DropDownList2_SelectedIndexChanged1(object sender, EventArgs e)
        {
            String Mon;
            Mon = DropDownList3.SelectedItem.Text;

            int noofday;

            if (Mon == "Feb")

                noofday = 28;
            else
                noofday = 31;

            for (int j = 1; j <= noofday; j++)
            {
                DropDownList2.Items.Add(j.ToString());
            }

        }

但是下拉列表没有数字:

enter image description here

0 个答案:

没有答案