实例介绍
虽然数据采用的是Oracle但是稍微改一些内容就可以改成SqlServer了,而且附加有数据库文件,希望对那些学习三层架构的同学有所帮助!
【实例截图】
【核心代码】
4744302542932097737.rar
└── Music
├── BLL
│ ├── AdminManage.cs
│ ├── AlbumManage.cs
│ ├── ArtistManage.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BLL.dll
│ │ │ ├── BLL.pdb
│ │ │ ├── DAL.dll
│ │ │ ├── DAL.pdb
│ │ │ ├── Model.dll
│ │ │ └── Model.pdb
│ │ └── Release
│ ├── BLL.csproj
│ ├── MemberManage.cs
│ ├── MusicManage.cs
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── DAL
│ ├── AdminService.cs
│ ├── AlbumService.cs
│ ├── ArtistService.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DAL.dll
│ │ │ ├── DAL.pdb
│ │ │ ├── Model.dll
│ │ │ └── Model.pdb
│ │ └── Release
│ ├── ClassDiagram1.cd
│ ├── DAL.csproj
│ ├── MemberService.cs
│ ├── MusicService.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Service References
│ └── Utility
│ ├── DBHelper.cs
│ └── SqlHelper.cs
├── Model
│ ├── Admin.cs
│ ├── Album.cs
│ ├── Artist.cs
│ ├── Base.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Model.dll
│ │ │ └── Model.pdb
│ │ └── Release
│ ├── BusinessObject.cs
│ ├── Member.cs
│ ├── Model.csproj
│ ├── Music.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Model.csproj.FileListAbsolute.txt
│ │ ├── Model.dll
│ │ ├── Model.pdb
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Style.cs
├── Music
│ ├── 1.mp3
│ ├── 不要在我寂寞的时候说爱我.mp3
│ ├── 和你一样.mp3
│ ├── 放生.mp3
│ ├── 此生不换.mp3
│ ├── 猜不透.mp3
│ ├── 白月光.mp3
│ ├── 范玮琪-那些花儿.mp3
│ └── 高泽源.mp3
├── music_log.ldf
├── music.mdf
├── Music.sln
├── Music.suo
└── ULL
├── 1.css
├── 1.jpg
├── Account
│ ├── ChangePassword.aspx
│ ├── ChangePassword.aspx.cs
│ ├── ChangePassword.aspx.designer.cs
│ ├── ChangePasswordSuccess.aspx
│ ├── ChangePasswordSuccess.aspx.cs
│ ├── ChangePasswordSuccess.aspx.designer.cs
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── Login.aspx.designer.cs
│ ├── Register.aspx
│ ├── Register.aspx.cs
│ ├── Register.aspx.designer.cs
│ └── Web.config
├── App_Data
├── bin
│ ├── BLL.dll
│ ├── BLL.pdb
│ ├── DAL.dll
│ ├── DAL.pdb
│ ├── Model.dll
│ ├── Model.pdb
│ ├── ULL.dll
│ └── ULL.pdb
├── checkcode.aspx
├── checkcode.aspx.cs
├── find.png
├── First.aspx
├── First.aspx.cs
├── First.aspx.designer.cs
├── Foot.ascx
├── Foot.ascx.cs
├── Foot.ascx.designer.cs
├── Global.asax
├── Global.asax.cs
├── Head.ascx
├── Head.ascx.cs
├── Head.ascx.designer.cs
├── img
│ ├── 1.jpg
│ ├── 2.png
│ ├── bei.jpg
│ ├── bg-frame.png
│ ├── btnLogin.gif
│ ├── btn_.png
│ ├── btnRefedit.gif
│ ├── bu.png
│ ├── fanbingbing.jpg
│ ├── find.png
│ ├── h1.jpg
│ ├── h2.jpg
│ ├── h3.jpg
│ ├── h4.jpg
│ ├── h5.jpg
│ ├── h6.jpg
│ ├── h7.jpg
│ ├── h8.jpg
│ ├── ha-header.jpg
│ ├── j1.jpg
│ ├── j2.jpg
│ ├── j3.jpg
│ ├── j4.jpg
│ ├── j5.jpg
│ ├── j6.jpg
│ ├── j7.jpg
│ ├── j8.jpg
│ ├── liuyifei.jpg
│ ├── login.jpg
│ ├── make.jpg
│ ├── shou.png
│ └── wanglihong.jpg
├── KTV.aspx
├── KTV.aspx.cs
├── KTV.aspx.designer.cs
├── login2.aspx
├── login2.aspx.cs
├── login2.aspx.designer.cs
├── make.jpg
├── Music
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── UI.csproj.FileListAbsolute.txt
│ ├── ULL.csproj.FileListAbsolute.txt
│ ├── ULL.dll
│ └── ULL.pdb
├── playimg
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── chattingroom2_01.gif
│ ├── chattingroom2_01.jpg
│ ├── chattingroom2_02.gif
│ ├── chattingroom2_03.gif
│ ├── chattingroom2_04.gif
│ ├── chattingroom2_05.gif
│ ├── chattingroom2_06.gif
│ ├── chattingroom2_07.gif
│ ├── chattingroom2_08.gif
│ ├── chattingroom2_09.gif
│ ├── chattingroom2_10.gif
│ ├── chattingroom2_11.gif
│ ├── chattingroom2_12.gif
│ ├── chattingroom2_13.gif
│ ├── chattingroom2_14.gif
│ ├── chattingroom2_15.gif
│ ├── chattingroom2_16.gif
│ ├── chattingroom2_17.gif
│ ├── chattingroom2_18.gif
│ ├── chattingroom2_19.gif
│ ├── chattingroom2_21.gif
│ ├── chattingroom2_22.gif
│ ├── chattingroom_pause.gif
│ ├── chattingroom_play.gif
│ ├── chattingroom_stop.gif
│ ├── Player.js
│ ├── play.js
│ ├── RealPlayer.js
│ └── stop.gif
├── PlayMusic.aspx
├── PlayMusic.aspx.cs
├── PlayMusic.aspx.designer.cs
├── Properties
│ └── AssemblyInfo.cs
├── Regist.aspx
├── Regist.aspx.cs
├── Regist.aspx.designer.cs
├── Scripts
│ ├── imgage.js
│ ├── jquery-1.4.1.js
│ ├── jquery-1.4.1.min.js
│ ├── jquery-1.4.1-vsdoc.js
│ ├── jquery.hoveraccordion.min.js
│ ├── jquery.hoverIntent.min.js
│ ├── jquery.min.js
│ ├── Phto.js
│ └── Tab.js
├── SearchMusic.aspx
├── SearchMusic.aspx.cs
├── SearchMusic.aspx.designer.cs
├── shou.png
├── Singer.aspx
├── Singer.aspx.cs
├── Singer.aspx.designer.cs
├── Style.aspx
├── Style.aspx.cs
├── Style.aspx.designer.cs
├── Styles
│ ├── 1.css
│ ├── 2.css
│ ├── player.css
│ ├── sc.framepage.css
│ ├── Site.css
│ ├── style2.css
│ └── style.css
├── UI.csproj
├── UI.csproj.user
├── Web.config
├── Web.Debug.config
├── WebForm1.aspx
├── WebForm1.aspx.cs
├── WebForm1.aspx.designer.cs
└── Web.Release.config
41 directories, 221 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论