在做毕业设计时遇到的一个问题,当用DataPager控件对ListView进行分页操作时,按照MSDN Library的例子进行操作时,总是无法实现。在网上也找过很多例子,都是类似msdn通过DataSource控件进行绑定的数据源,而我是在后台进行数据绑定的,又不想用sql进行控制,最后大量查找后才找到的解决方案,遂通过一个例子进行总结。
首先前台代码就不多说了,直接贴出来:
<asp:ListView ID="UserListView" ItemPlaceholderID="UserPlaceHolder"
runat="server" >
<LayoutTemplate>
<table id="tblUsers" class="table table-hover table-striped">
<caption>
</caption>
<thead>
<tr>
<th class="span3">#
</th>
<th class="span3">用户名
</th>
<th class="span3">邮箱
</th>
<th class="span3">电话
</th>
<th class="span3">操作
</th>
</tr>
</thead>
<tbody>
<asp:PlaceHolder ID="UserPlaceHolder" runat="server" />
&l