Imports System Imports System.Web Imports System.Web.UI Namespace Controls Public Class BookView Inherits Control ' need somewhere to store the book... Dim m_Book As Book Public Property Book() As Book Get Return m_Book End Get Set m_Book = Value End Set End Property End Class End Namespace |
……