initial commit
This commit is contained in:
commit
252dac3143
1516 changed files with 694271 additions and 0 deletions
31
App_Code/Shared/IPagination.vb
Normal file
31
App_Code/Shared/IPagination.vb
Normal file
|
@ -0,0 +1,31 @@
|
|||
|
||||
Imports Microsoft.VisualBasic
|
||||
Imports BaseClasses.Utils.DbUtils
|
||||
|
||||
Namespace Persons.UI
|
||||
|
||||
|
||||
|
||||
Public Interface IPagination
|
||||
|
||||
#Region "Interface Properties"
|
||||
|
||||
ReadOnly Property CurrentPage() As System.Web.UI.WebControls.TextBox
|
||||
ReadOnly Property FirstPage() As System.Web.UI.WebControls.ImageButton
|
||||
ReadOnly Property LastPage() As System.Web.UI.WebControls.ImageButton
|
||||
ReadOnly Property NextPage() As System.Web.UI.WebControls.ImageButton
|
||||
ReadOnly Property PageSize() As System.Web.UI.WebControls.TextBox
|
||||
ReadOnly Property PageSizeButton() As System.Web.UI.WebControls.LinkButton
|
||||
ReadOnly Property PreviousPage() As System.Web.UI.WebControls.ImageButton
|
||||
ReadOnly Property TotalItems() As System.Web.UI.WebControls.Label
|
||||
ReadOnly Property TotalPages() As System.Web.UI.WebControls.Label
|
||||
Property Visible() as Boolean
|
||||
|
||||
|
||||
#End Region
|
||||
|
||||
End Interface
|
||||
|
||||
|
||||
End Namespace
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue