编辑:现在正在工作,见下文。
大家好,
我的ASP.Net 3.5应用程序出现轻微问题。我正在尝试让程序获取已点击的页码。我正在使用ASP.Net内置的AllowPaging =“True”函数。没有代码,它永远不会是相同的,所以这里是:
ASP.Net:
<asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333"
GridLines="Vertical" Width="960px" AllowSorting="True"
EnableSortingAndPagingCallbacks="True" AllowPaging="True" PageSize="25" >
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#999999" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
C#:
var fillTable = from ft in db.IncidentDatas
where ft.pUserID == Convert.ToInt32(ClientList.SelectedValue.ToString())
select new
{
Reference = ft.pRef.ToString(),
Date = ft.pIncidentDateTime.Value.Date.ToShortDateString(),
Time = ft.pIncidentDateTime.Value.TimeOfDay,
Premesis = ft.pPremises.ToString(),
Latitude = ft.pLat.ToString(),
Longitude = ft.pLong.ToString()
};
if (fillTable.Count() > 0)
{
GridView1.DataSource = fillTable;
GridView1.DataBind();
var IncidentDetails = fillTable.ToList();
for (int i = 0; i < IncidentDetails.Count(); i++)
{
int pageno = GridView1.PageIndex;
int pagenostart = pageno * 25;
if (i >= pagenostart && i < (pagenostart + 25))
{
//Processing
}
}
}
知道为什么GridView1.PageIndex总是= 0?问题是,处理对于网格视图正常工作....它将始终转到正确的分页页面,但是当我尝试获取数字时它始终为0。救命啊!
答案 0 :(得分:0)
您是否在致电GridView1.PageIndex
之前尝试访问GridView1.DataBind
?分配新数据源然后将其绑定到网格时,它可能会重置。
答案 1 :(得分:0)
答案 2 :(得分:0)
检查你的帖子,你可能在每个页面加载时都加载网格,所以当你翻页时,你可能正在调用填充网格的代码并重置页面索引。只有在不回发时才需要确保加载它,如果是回发,则必须从ViewState等存储区域获取数据和相应的pageIndex。 / p>