我试图通过我所做的一系列查询来填充我的下拉菜单,每当页面加载时都会自动进行。每当我在下拉列表中选择一个值并按下一个按钮时,它都会返回到第一个索引,所以我想知道是否有任何方法可以防止这个问题:
protected void Page_Load(object sender, EventArgs e)
{
Functions.username = "1"; // This is just to get rid of my login screen for testing puposes
DropDownList1.Items.Clear();
Functions.moduledatelister();
for (int i = 0; i <= Functions.moduledatelist.Count-1; i++) {
DropDownList1.Items.Add(Functions.moduledatelist.ElementAt(i));
}
}
protected void Button2_Click(object sender, EventArgs e)
{
Label1.Text = Functions.DATES.ElementAt(DropDownList1.SelectedIndex).ToString();
}
按下按钮后,索引返回 0,标签显示第一项的值。