Listing J
'##############################################################################
' Author: Kevin Koch
' Description:  This class defines static constant page references to aspx
'              pages in our application. By referencing a variable name
'               instead of hardcoded string page names, we can easily update
'              the application linkage should a page name change in the future.
'##############################################################################
 
 
 
 
Public Class WebPageNames
 
 
    Public Shared EDIT_BOOK As String = "EditBook.aspx"
    Public Shared VIEW_BOOKS As String = "ViewBooks.aspx"
    Public Shared SEARCH_ORDERS As String = "SearchOrders.aspx"
   Public Shared HOME_PAGE As String = "HomePage.aspx"
 
 
End Class