<div class="listQuestions">
<asp:ListView ID="lstQuestions" runat="server"
OnPagePropertiesChanging="lstQuestions_PagePropertiesChanging">
<LayoutTemplate>
<div id="itemPlaceholderContainer" runat="server">
<div id="itemPlaceholder" runat="server">
</div>
</div>
</LayoutTemplate>
<ItemTemplate>
<div class="questionInfo">
<h2>
<%#Eval("Title") %>
</h2>
<div class="tags">
<%#Eval("Description") %>
</div>
</div>
</ItemTemplate>
</asp:ListView>
<div>
<asp:DataPager ID="lvQuestionsPager" PagedControlID="lstQuestions" PageSize="3" runat="server">
<Fields>
<asp:NumericPagerField ButtonType="Link" />
</Fields>
</asp:DataPager>
</div>
</div>
リストビューを使用して質問のリストをバインドしています。そしてデータページャー。Datapager pageproperties の変更イベントは、最初のページの後に発生しません。そして、私が持っている背後にあるコードで
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
BindQuestionsListView();//Binding a list of questions.
}
}
protected void lstQuestions_PagePropertiesChanging(object sender, PagePropertiesChangingEventArgs e)
{
lvQuestionsPager.SetPageProperties(e.StartRowIndex, e.MaximumRows, false);
BindQuestionsListView();
}
bind list view() で質問のリストをバインドしています。このイベントは発生していません。これは、dis の問題である可能性があります。