1

问题在标题中描述。当我专门将 ListBox 的 AutoPostBack 属性设置为 false 时,它​​也会进行回发,尽管默认情况下它应该是这样的。ListBox 选择模式设置为多个。

有一个类似的问题,但背景不同。

我错过了什么?这是一些众所周知的问题吗?

感谢您的回复,如果您需要确切的代码,请告诉您

编辑:

这是aspx页面。Codebehind 要大得多,因为这个页面是重定向的目标,请告诉你是否需要从那里获得更多信息。

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

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

        <asp:HiddenField ID="SqlSelect" runat="server" />
        <asp:HiddenField ID="SqlColumnSize" runat="server" />
        <asp:HiddenField ID="SqlGroup" runat="server" />
        <asp:HiddenField ID="SqlOrder" runat="server" />
        <asp:HiddenField ID="PageSize" runat="server" />
        <asp:HiddenField ID="SumColumns" runat="server" />

        <asp:Repeater ID="RepeaterInput" runat="server" OnItemDataBound="OnRepeaterItemDataBound" >
            <HeaderTemplate>
                <table>
                <tr><th>
                    <asp:Label ID="LabelHeader" runat="server" Text='<%# Webcom.Configurator.Core.MLPersistentManager.GetKeyValue("Admin.Reports.EnterParams") %>' />
                </th></tr>
            </HeaderTemplate>
            <ItemTemplate>
                <tr>
                    <td>
                        <asp:TextBox ID="TextBoxValueOne" runat="server" AutoPostBack="false" />
                        <asp:ListBox ID="ListBoxControlOne" runat="server" AutoPostBack="false" />
                    </td>
                    <td><asp:Label ID="LabelOperatorOne" runat="server" /></td>
                    <td><asp:Label ID="LabelColumnName" runat="server" /></td>
                    <td><asp:Label ID="LabelOperatorTwo" runat="server" /></td>
                    <td>
                        <asp:TextBox ID="TextBoxValueTwo" runat="server" AutoPostBack="false" />
                        <asp:ListBox ID="ListBoxControlTwo" runat="server" AutoPostBack="false" />
                    </td>
                </tr>
            </ItemTemplate>
            <FooterTemplate>
                </table>
            </FooterTemplate>
        </asp:Repeater>

        <asp:Button ID="buttonSubmit" runat="server" Visible="true" OnClick="OnSubmit" />

    </form>
</body>
</html>
4

1 回答 1

0

转发器没有跟踪转发器内控件发生的自动回发的方法。这可能会为您提供一个线索:

在转发器中处理自动回发

You could try initializing the AutoPostBack property early in the code-behind page life-cycle, perhaps in Page Load method (after page controls have been created):

ListBox ListBoxControlOne = (ListBox)RepeaterInput.FindControl("ListBoxControlOne");
ListBoxControlOne.AutoPostBack = false;
于 2012-10-30T12:12:37.750 回答