Listing B
'##############################################################################
' 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 LOGIN_FORM As String = "~/public/LoginForm.aspx"
    Public Shared VIEW_CART As String = "~/private/ViewCart.aspx"
    Public Shared CREATE_CUSTOMER As String = "~/public/CreateCustomer.aspx"
    Public Shared SEARCH_BOOKS As String = "~/public/SearchBooks.aspx"
    Public Shared VIEW_CUSTOMER_ORDERS As String = "~/private/ViewCustomerOrders.aspx"
 
 
End Class