Mistake in code on page 151
<%@ Page Language="C#" AutoEventWireup="true" Codefile="AccessDenied.aspx.cs" Inherits="AccessDenied" ... %>
should be:
<%@ Page Language="C#" AutoEventWireup="true" Codefile="AccessDenied.aspx.cs" Inherits="MB.TheBeerHouse.UI.AccessDenied" ... %>
The partial class definition as written on page 152 looks to inherit from MB.TheBeerHouse.UI.BasePage but cannot locate it because the page class is not in the MB.TheBeerHouse.UI namespace.
|