嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C# vs2008经典的三层架构的用户登录验证实例
是初学者学习多层架构很好的实例,使用vs2008、数据库使用SQL Server 2000/2005,数据访问采用抽象工厂模式,希望能给初学者启发和帮助。
.
├── C# vs2008经典的三层架构的用户登录验证实例.rar
└── TestBook
├── Entity
│ ├── AdminInfo.cs
│ ├── Entity.csproj
│ ├── Entity.csproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Entity.dll
│ │ └── TestBook.Entity.pdb
│ └── obj
│ └── Debug
│ ├── Entity.csproj.FileListAbsolute.txt
│ ├── TempPE
│ ├── TestBook.Entity.dll
│ └── TestBook.Entity.pdb
├── Factory
│ ├── BLLFactory.cs
│ ├── DALFactory.cs
│ ├── Factory.csproj
│ ├── Factory.csproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Entity.dll
│ │ ├── TestBook.Entity.pdb
│ │ ├── TestBook.Factory.dll
│ │ ├── TestBook.Factory.pdb
│ │ ├── TestBook.IBLL.dll
│ │ ├── TestBook.IBLL.pdb
│ │ ├── TestBook.IDAL.dll
│ │ └── TestBook.IDAL.pdb
│ └── obj
│ └── Debug
│ ├── Factory.csproj.FileListAbsolute.txt
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── TestBook.Factory.dll
│ └── TestBook.Factory.pdb
├── IBLL
│ ├── IAdminBLL.cs
│ ├── IBLL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Entity.dll
│ │ ├── TestBook.Entity.pdb
│ │ ├── TestBook.IBLL.dll
│ │ └── TestBook.IBLL.pdb
│ └── obj
│ └── Debug
│ ├── IBLL.csproj.FileListAbsolute.txt
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── TestBook.IBLL.dll
│ └── TestBook.IBLL.pdb
├── IDAL
│ ├── IAdminDAL.cs
│ ├── IDAL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Entity.dll
│ │ ├── TestBook.Entity.pdb
│ │ ├── TestBook.IDAL.dll
│ │ └── TestBook.IDAL.pdb
│ └── obj
│ └── Debug
│ ├── IDAL.csproj.FileListAbsolute.txt
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── TestBook.IDAL.dll
│ └── TestBook.IDAL.pdb
├── SQLServerDAL
│ ├── AdminDAL.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SQLServerDAL.csproj
│ ├── SQLServerDAL.csproj.user
│ ├── SQLServerDALHelper.cs
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Entity.dll
│ │ ├── TestBook.Entity.pdb
│ │ ├── TestBook.Factory.dll
│ │ ├── TestBook.Factory.pdb
│ │ ├── TestBook.IBLL.dll
│ │ ├── TestBook.IBLL.pdb
│ │ ├── TestBook.IDAL.dll
│ │ ├── TestBook.IDAL.pdb
│ │ ├── TestBook.SQLServerDAL.dll
│ │ └── TestBook.SQLServerDAL.pdb
│ └── obj
│ └── Debug
│ ├── ResolveAssemblyReference.cache
│ ├── SQLServerDAL.csproj.FileListAbsolute.txt
│ ├── TempPE
│ ├── TestBook.SQLServerDAL.dll
│ └── TestBook.SQLServerDAL.pdb
├── SimpleBLL
│ ├── AdminBLL.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SimpleBLL.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Entity.dll
│ │ ├── TestBook.Entity.pdb
│ │ ├── TestBook.Factory.dll
│ │ ├── TestBook.Factory.pdb
│ │ ├── TestBook.IBLL.dll
│ │ ├── TestBook.IBLL.pdb
│ │ ├── TestBook.IDAL.dll
│ │ ├── TestBook.IDAL.pdb
│ │ ├── TestBook.SimpleBLL.dll
│ │ ├── TestBook.SimpleBLL.pdb
│ │ ├── TestBook.Utility.dll
│ │ └── TestBook.Utility.pdb
│ └── obj
│ └── Debug
│ ├── ResolveAssemblyReference.cache
│ ├── SimpleBLL.csproj.FileListAbsolute.txt
│ ├── TempPE
│ ├── TestBook.SimpleBLL.dll
│ └── TestBook.SimpleBLL.pdb
├── TestBook.sln
├── TestBook.suo
├── Utility
│ ├── Encryptor.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Utility.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── TestBook.Utility.dll
│ │ └── TestBook.Utility.pdb
│ └── obj
│ └── Debug
│ ├── TempPE
│ ├── TestBook.Utility.dll
│ ├── TestBook.Utility.pdb
│ └── Utility.csproj.FileListAbsolute.txt
└── Web
├── App_Data
│ ├── NGuestBook.mdf
│ ├── NGuestBook_log.LDF
│ └── shili.vsd
├── Default.aspx
├── Default.aspx.cs
├── Default.aspx.designer.cs
├── Login.aspx
├── Login.aspx.cs
├── Login.aspx.designer.cs
├── Manage.aspx
├── Manage.aspx.cs
├── Manage.aspx.designer.cs
├── Properties
│ └── AssemblyInfo.cs
├── Styles
│ ├── Common.css
│ └── Login.aspx.css
├── Web.config
├── Web.csproj
├── Web.csproj.user
├── bin
│ ├── TestBook.Entity.dll
│ ├── TestBook.Entity.pdb
│ ├── TestBook.Factory.dll
│ ├── TestBook.Factory.pdb
│ ├── TestBook.IBLL.dll
│ ├── TestBook.IBLL.pdb
│ ├── TestBook.IDAL.dll
│ ├── TestBook.IDAL.pdb
│ ├── TestBook.SQLServerDAL.dll
│ ├── TestBook.SQLServerDAL.pdb
│ ├── TestBook.SimpleBLL.dll
│ ├── TestBook.SimpleBLL.pdb
│ ├── TestBook.Utility.dll
│ ├── TestBook.Utility.pdb
│ ├── Web.dll
│ └── Web.pdb
└── obj
└── Debug
├── ResolveAssemblyReference.cache
├── TempPE
├── Web.csproj.FileListAbsolute.txt
├── Web.dll
└── Web.pdb
58 directories, 135 files