3

上述错误发生在列表框上的 SelectedIndexChanged 单击事件上。

在调试中返回的值为“”,但是当您查看网页源代码时,肯定有值。

这是我的列表框:

<asp:ListBox ID="lstBxMyList" runat="server" CssClass="binorderlst1"
     DataTextField="myName" 
     DataValueField="myID" 
     OnSelectedIndexChanged ="lstBxMyList_SelectedIndexChanged"
     AutoPostBack="true" Rows="10">
</asp:ListBox>

这是事件:

protected void lstBxMyList_SelectedIndexChanged(object sender, EventArgs e)
{
    myID = Convert.ToInt32(lstBxSiteList.SelectedValue.ToString());

    ... rest of code
}

为了完整起见,这里是数据绑定:

private void BindLstBxMyList(int myOtherID)
    {
        DataTable dt = new DataTable();
        SqlConnection conn;
        SqlCommand comm;

        using (conn = new SqlConnection(aSHconns.aconn))
        {
            comm = new SqlCommand("myStoredProc", conn);
            comm.CommandType = CommandType.StoredProcedure;
            comm.Parameters.Add(new SqlParameter("@myOtherID", SqlDbType.Int));
            comm.Parameters["@myOtherID"].Value = myOtherID;
            SqlDataAdapter sqlDa = new SqlDataAdapter(comm);

            try
            {
                conn.Open();
                 sqlDa.Fill(dt);
                 if (dt.Rows.Count > 0)
                 {
                     lstBxMyList.DataSource = dt;
                     lstBxMyList.DataTextField = "myName";
                     lstBxMyList.DataValueField = "myID";
                     lstBxMyList.DataBind();
                 }

            }

            finally 
            {
                conn.Close();
            }
        }

    }

如果我恢复到 SqlDataSource,则列表框会返回值。Bt 我需要重新填充列表,所以我需要数据绑定背后的代码(除非当然有更好的方法)

那么为什么列表框选择的值返回一个空字符串呢?任何帮助将不胜感激。

4

1 回答 1

6

您有属性 AutoPostBack = "True" 这将对每个选定的索引进行回发更改。因此,在它进入 Selected index changed 事件之前,它必须在绑定列表框的地方点击页面加载。因此,当它点击页面加载时,选定的索引将更改为默认项。所以,试试下面的代码。

 protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
             //Bind your listbox here
            }
         }
于 2012-05-23T15:35:00.980 回答