1

当我在 datapager 中更改页面时,它会导致完全回发,即使 datapager 工作非常异常,也不知道是什么原因。通过异常我的意思是有时数据有时不显示,
以下是我在 c# 中的代码

     protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            BindListView();
        }           
    }

    protected void StudentListView_PagePropertiesChanging(object sender, PagePropertiesChangingEventArgs e)
    {
        BindListView();
    }
    private void BindListView()
    {
        StudentListView.DataSource = StudentDataSource;
        StudentListView.DataBind();
    }

    protected void StudentDataSource_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
    {
        e.Arguments.MaximumRows = StudentListDataPager.MaximumRows;
        e.Arguments.StartRowIndex = StudentListDataPager.StartRowIndex;
    }

以下是我的标记

    <asp:UpdatePanel runat="server" UpdateMode="Conditional">
    <ContentTemplate>        <
    <asp:DropDownList runat="server" ID="BatchDropDownList" AutoPostBack="True">
        <asp:ListItem Text="Batch 1" Value="1" Selected="True" />
        <asp:ListItem Text="Batch 2" Value="2" />
    </asp:DropDownList>

    <asp:ListView ID="StudentListView" runat="server"       
        ItemPlaceholderID="ListViewContent" 
            EnableViewState="false" 
            onpagepropertieschanging="StudentListView_PagePropertiesChanging"> 
        <LayoutTemplate> 
            <table style="width:100%">
                <thead>
                    <tr>
                        <th class="align-left"><strong>Name</strong></th>
                        <th class="align-left"><strong>MobNo</strong></th>
                    </tr>
                </thead>
                <tbody runat="server" id="ListViewContent"> 
                </tbody>
                <tfoot>
                    <tr>
                        <td colspan="3">

                        </td>
                    </tr>
                </tfoot>
            </table>

        </LayoutTemplate>  
        <ItemTemplate>  

            <tr>
                <td style="width:70%;"><%# Eval("FirstName") %>&nbsp<%# Eval("LastName") %></td>
                <td style="width:30%;"><%# Eval("MobNo") %></td>                    
            </tr>

        </ItemTemplate>             
    </asp:ListView>
    <asp:DataPager ID="StudentListDataPager" runat="server" PageSize="5" PagedControlID="StudentListView">
        <Fields>
            <asp:NumericPagerField />
        </Fields>
    </asp:DataPager>


    <asp:ObjectDataSource ID="StudentDataSource" runat="server" 
        SelectMethod="GetStudentListBatchWise" SelectCountMethod="StudentCount" 
            TypeName="SCERPCommonUtil.Student" EnablePaging="True" 
            onselecting="StudentDataSource_Selecting">
        <SelectParameters>
            <asp:ControlParameter Name="batchId" ControlID="BatchDropDownList" PropertyName="SelectedValue" />
        </SelectParameters>
    </asp:ObjectDataSource>
    </ContentTemplate>
</asp:UpdatePanel>

如果我犯了任何错误,请告诉我。

PS:请不要向我指出任何stackoverflow问题,因为我已经阅读了所有这些问题,并且没有一个特定于我的要求,

我面临的最重要的问题是数据分页器正在提供完整的回发,即使datapager发生updatepanel同样的事情也是如此。

4

2 回答 2

0

亲爱的,您已将 updatemode 指定为有条件的。但是您已经在更新面板中提到了任何触发器。将 AsyncPostBackTrigger 添加到更新面板

<asp:UpdatePanel runat="server" UpdateMode="Conditional">
<ContentTemplate> 
<Triggers>
            <asp:AsyncPostBackTrigger ControlID="StudentListView" EventName="PagePropertiesChanging" />
</Triggers>
<ContentTemplate>
</asp:UpdatePanel>

来自 MSDN: If the UpdateMode property is set to Conditional, and one of the following conditions occurs:

  1. 显式调用 UpdatePanel 控件的 Update 方法。
  2. 回发是由使用 UpdatePanel 控件的 Triggers 属性定义为触发器的控件引起的。在这种情况下,控件显式触发面板内容的更新。该控件可以位于定义触发器的 UpdatePanel 控件内部或外部。
  3. ChildrenAsTriggers 属性设置为 true,并且 UpdatePanel 控件的子控件会导致回发。嵌套 UpdatePanel 控件的子控件不会导致对外部 UpdatePanel 控件的更新,除非它被明确定义为触发器。

更新答案: 为什么您没有在列表视图中提及 DataSourceID 属性???

 <asp:ListView ID="StudentListView" runat="server"  DataSourceID  ="StudentDataSource"

并且您将列表视图绑定在后面的代码中

private void BindListView()
{
    StudentListView.DataSource = StudentDataSource; //also it should be DataSourceID 
    StudentListView.DataBind();
}

您正在使用对象数据源,并且在您的代码中将其绑定为错误的数据源。将其绑定为数据源 ID 或简单提及 listview 的 datasourceID 属性,然后您不必在后面的代码中绑定它。

于 2012-07-31T10:25:19.713 回答
-1

我想通了——万一有人来看——

我正在使用<form runat="server">...<form>标签,其中存在所有这些列表视图、数据分页器代码。当我为表单标签分配唯一id属性时,一切都开始正常工作。
虽然我不明白这种行为的原因。

于 2012-08-28T21:13:22.197 回答