I have this datapager and I want to get the current page. I checked out the properties of about everything and the MSDN documentation and I still did not find anything useful to get the current page. Can anyone help?
<asp:DataPager ID="DataPager1" runat="server" PagedControlID="ListView1" PageSize="10">
<Fields>
<asp:NextPreviousPagerField ButtonType="Link" FirstPageText="<<" PreviousPageText="<" ShowFirstPageButton="true" ShowNextPageButton="false" />
<asp:NumericPagerField ButtonCount="3" />
<asp:NextPreviousPagerField ButtonType="Link" LastPageText=">>" NextPageText=">" ShowLastPageButton="true" ShowPreviousPageButton="false" />
</Fields>
</asp:DataPager>