ASP数据绑定下拉列表没有自动后备

时间:2012-11-18 13:28:38

标签: asp.net data-binding drop-down-menu autopostback

我有一个简单的表单,下拉列表绑定到字符串数组(作为一个简单的例子)。用户单击按钮时会提交表单。

我想查询列表中的所选项目。我阅读了下拉列表的SelectedValue成员,无论我在表单中选择什么,它都始终包含默认项目。

我不能在列表中使用autopostback,因为在我的生产环境中,表单使用jquery在动态div中显示。

如果我删除绑定并使用ListItems标记在asp文件中添加列表项,那么它就会神奇地起作用。

我的示例asp代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
        <br />
        <asp:DropDownList ID="DropDownList1" runat="server">
        </asp:DropDownList>
        <br />
        <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />

    </div>
    </form>
</body>
</html>

代码隐藏文件:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        string[] items = { "bindItem1", "bindItem2", "bindItem3" };
        DropDownList1.DataSource = items;
        DropDownList1.DataBind();
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        string text = TextBox1.Text;
        string item = DropDownList1.SelectedValue;
    }
}

1 个答案:

答案 0 :(得分:4)

在page_load中,仅当Page.IsPostBack == False时才进行数据绑定。

    if (!IsPostBack)
    {
        //do the data binding
    }

现在每个页面加载的代码都会反复绑定数据,因此所选的值“不”改变。