1

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

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

我不能在列表中使用自动回发,因为在我的生产环境中,表单使用 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;
    }
}
4

1 回答 1

4

只有在 Page.IsPostBack==False 时才在 page_load 中进行数据绑定。

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

您的代码现在在每次页面加载时都会一次又一次地绑定数据,因此所选值“不会”改变。

于 2012-11-18T13:32:15.767 回答