<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 页面属性更改事件。在我后面的代码中
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();
}
我在绑定列表视图()中绑定了一个问题列表。此事件没有被触发,这可能是 dis 的问题。