0

对于这个微不足道的问题,我很抱歉,但我无法在 Google 或我的参考书中找到有关此信息的信息,这些信息准确地描述/解决了我的问题。

我在页面上有一些 DropDownList 控件,我使用 SQL 表中的信息填充这些控件。刷新页面时,DropDownLists 不会丢失其旧值,而是将相同的值重新添加到它们中,因此现在它们被双重填充。功能仍然相同,但它使 DropDownList 控件看起来不那么整洁,显然是不需要的。

<asp:DropDownList ID="DropDownList2" runat="server" OnLoad="LoadDutchessSubjects"
            AppendDataBoundItems="true">

我后面代码中的 LoadDutchessSubjects 函数只是从 SQL 表中获取所有记录并将它们加载到 DDL 中:

public void LoadDutchessSubjects(object sender, EventArgs e)
{
    string connectionString = SqlHelperClass.ConnectionString;
    DataTable subjects = new DataTable();
    using (SqlConnection con = new SqlConnection(connectionString))
    {
        con.Open();
        try
        {
            SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM cfhudson_counties ORDER BY County", con);
            adapter.Fill(subjects);
            DropDownList2.DataSource = subjects;
            DropDownList2.DataTextField = "County";
            DropDownList2.DataValueField = "County";
            DropDownList2.DataBind();
        }
        catch (Exception ex)
        {
            DropDownList2.Items.Insert(0, new ListItem("<ERROR: Occured in populating.>", "1"));
        }
        con.Close();
    }
    //Overall.Items.Insert(0, new ListItem("<Select Subject>", "0")); //(dev test)
}

我可以在后面的代码中做些什么来防止这种情况发生吗?这是否与 ASP.net 状态和刷新/服务器端发生了什么有关?也许我们可以把这个问题变成一个更有用和更普遍的解释,为什么会发生这种情况,因为我显然不明白这里关于 ASP.net 的一些重要事情。

4

1 回答 1

2

不要在回发时重新加载项目。它们在视图状态中持续存在

public void LoadDutchessSubjects(object sender, EventArgs e)
{
    if (IsPostback)
        return;

    string connectionString = SqlHelperClass.ConnectionString;
    DataTable subjects = new DataTable();
于 2013-08-06T16:14:19.927 回答