-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlistview_bug.aspx
52 lines (48 loc) · 1.78 KB
/
listview_bug.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<%@ Page Language="C#" EnableViewState="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ListView ID="ListViewTest" DataSourceID="ObjectDataSource1" runat="server" >
<ItemTemplate><%# Container.DataItem %> </ItemTemplate>
<LayoutTemplate>
<div runat="server" id="itemPlaceHolder"></div>
</LayoutTemplate>
</asp:ListView>
<asp:DataPager runat="server" ID="DataPager1" PagedControlID="ListViewTest">
<Fields>
<asp:NextPreviousPagerField ButtonType="Link" ShowFirstPageButton="true"
ShowLastPageButton="false" ShowNextPageButton="false" ShowPreviousPageButton="true"/>
<asp:NumericPagerField ButtonCount="5" />
<asp:NextPreviousPagerField ButtonType="Link" ShowFirstPageButton="false"
ShowLastPageButton="true" ShowNextPageButton="true" ShowPreviousPageButton="false" />
</Fields>
</asp:DataPager>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" EnablePaging="True"
SelectMethod="GetData" SelectCountMethod="GetCount">
</asp:ObjectDataSource>
</div>
<script runat="server" type="text/C#">
protected void Page_LoadComplete(object sender, EventArgs e)
{
ObjectDataSource1.TypeName = this.GetType().AssemblyQualifiedName;
}
public int[] GetData(int startRowIndex, int maximumRows)
{
int[] ret = new int[13];
for (int i = 0; i < 13; i++)
ret [i] = startRowIndex + i;
return ret;
}
public int GetCount()
{
return GetData(0, 13).Length;
}
</script>
</form>
</body>
</html>