13 writes to LastPage
System.Web.Mobile (13)
UI\MobileControls\Adapters\HtmlFormAdapter.cs (2)
503mc.LastPage = page; 513mobileChild.LastPage = page;
UI\MobileControls\Adapters\WmlFormAdapter.cs (2)
314mc.LastPage = page; 324mobileChild.LastPage = page;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicFormAdapter.cs (2)
401mc.LastPage = page; 411mobileChild.LastPage = page;
UI\MobileControls\Form.cs (2)
606mc.LastPage = ctp.LastPage; 611this.LastPage = Math.Max(pager.PageCount, 1);
UI\MobileControls\ItemPager.cs (1)
117_control.LastPage = _lastPage;
UI\MobileControls\MobileControl.cs (3)
1352this.LastPage = pager.PageCount; 1359this.LastPage = pageNumber; 1425LastPage = page;
UI\MobileControls\Panel.cs (1)
147this.LastPage = pager.PageCount;
8 references to LastPage
System.Web.Mobile (8)
UI\MobileControls\Adapters\HtmlControlAdapter.cs (1)
265if (mobileCtl.FirstPage == mobileCtl.LastPage)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicControlAdapter.cs (1)
694if (mobileCtl.FirstPage == mobileCtl.LastPage) {
UI\MobileControls\Form.cs (4)
604if(mc.LastPage < ctp.LastPage) 606mc.LastPage = ctp.LastPage; 620return this.LastPage;
UI\MobileControls\MobileControl.cs (2)
1224if (FirstPage < 0 || LastPage < 0) 1228return pageNumber >= FirstPage && pageNumber <= LastPage;