为什么TheBeerHouse的网站可以VS2005下正常编译通过?

TheBeerHouse是wrox中的示例,在app_code下有个BasePage类:

namespace MB.TheBeerHouse.UI
{
   public class BasePage : System.Web.UI.Page
   {



在外面的任一个WEB页程序有:
namespace MB.TheBeerHouse.UI
{
   public partial class About : BasePage
   {


而饿自己单独写了一个类似的,就怎么编译也通不过,而且出错不是在自建的CS里,而是系统自己生成的CS中出的错.



而饿只在cs里写using Diamond.ThePhile.Web;
然后直接在下面写:
    public partial class login : PhilePage
    {

就编译通过了.....................................anybody knows?
原文地址:https://www.cnblogs.com/weiryang/p/1064191.html