实例介绍
可当毕业设计,页面简单,适合新手学习使用,未经同意,不可进行商业作用谢谢,希望大佬们能多多指正,在下感激不尽
【实例截图】
【核心代码】
4744300845235843800.rar
└── Library
├── Library
│ ├── Admin
│ │ ├── Admin.Master
│ │ ├── Admin.Master.cs
│ │ ├── Admin.Master.designer.cs
│ │ ├── Book
│ │ │ ├── Book_Add.aspx
│ │ │ ├── Book_Add.aspx.cs
│ │ │ ├── Book_Add.aspx.designer.cs
│ │ │ ├── Book_edit.aspx
│ │ │ ├── Book_edit.aspx.cs
│ │ │ ├── Book_edit.aspx.designer.cs
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ ├── Borrow
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ ├── Index
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ ├── List
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ └── User
│ │ ├── Index.aspx
│ │ ├── Index.aspx.cs
│ │ ├── Index.aspx.designer.cs
│ │ ├── User_Add.aspx
│ │ ├── User_Add.aspx.cs
│ │ ├── User_Add.aspx.designer.cs
│ │ ├── User_Manage.aspx
│ │ ├── User_Manage.aspx.cs
│ │ └── User_Manage.aspx.designer.cs
│ ├── App_Code
│ │ ├── ConnSql.cs
│ │ ├── WebMessage.cs
│ │ └── Yzm.cs
│ ├── bin
│ │ ├── Library.dll
│ │ ├── Library.dll.config
│ │ ├── Library.pdb
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Newtonsoft.Json.dll
│ │ └── roslyn
│ ├── css
│ │ ├── bootstrap.min.css
│ │ └── bootstrap-table.css
│ ├── Home
│ │ ├── Book
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ ├── Borrow
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ ├── Home.Master
│ │ ├── Home.Master.cs
│ │ ├── Home.Master.designer.cs
│ │ ├── Index
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ ├── List
│ │ │ ├── Index.aspx
│ │ │ ├── Index.aspx.cs
│ │ │ └── Index.aspx.designer.cs
│ │ └── User
│ │ ├── Index.aspx
│ │ ├── Index.aspx.cs
│ │ └── Index.aspx.designer.cs
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── Index.aspx.designer.cs
│ ├── js
│ │ ├── bootstrap.min.js
│ │ ├── bootstrap-table.js
│ │ └── jquery.min.js
│ ├── Library.csproj
│ ├── Library.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── AspnetCompileMerge
│ │ │ │ ├── Source
│ │ │ │ │ ├── Admin
│ │ │ │ │ │ ├── Admin.Master
│ │ │ │ │ │ ├── Admin.Master.cs
│ │ │ │ │ │ ├── Admin.Master.designer.cs
│ │ │ │ │ │ ├── Book
│ │ │ │ │ │ │ ├── Book_Add.aspx
│ │ │ │ │ │ │ ├── Book_Add.aspx.cs
│ │ │ │ │ │ │ ├── Book_Add.aspx.designer.cs
│ │ │ │ │ │ │ ├── Book_edit.aspx
│ │ │ │ │ │ │ ├── Book_edit.aspx.cs
│ │ │ │ │ │ │ ├── Book_edit.aspx.designer.cs
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ ├── Borrow
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ ├── Index
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ ├── List
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ └── User
│ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ ├── Index.aspx.designer.cs
│ │ │ │ │ │ ├── User_Add.aspx
│ │ │ │ │ │ ├── User_Add.aspx.cs
│ │ │ │ │ │ ├── User_Add.aspx.designer.cs
│ │ │ │ │ │ ├── User_Manage.aspx
│ │ │ │ │ │ ├── User_Manage.aspx.cs
│ │ │ │ │ │ └── User_Manage.aspx.designer.cs
│ │ │ │ │ ├── App_Code
│ │ │ │ │ │ ├── ConnSql.cs
│ │ │ │ │ │ ├── WebMessage.cs
│ │ │ │ │ │ └── Yzm.cs
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── Library.dll
│ │ │ │ │ │ └── Library.pdb
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── bootstrap.min.css
│ │ │ │ │ ├── Home
│ │ │ │ │ │ ├── Book
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ ├── Borrow
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ ├── Home.Master
│ │ │ │ │ │ ├── Home.Master.cs
│ │ │ │ │ │ ├── Home.Master.designer.cs
│ │ │ │ │ │ ├── Index
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ ├── List
│ │ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ │ └── User
│ │ │ │ │ │ ├── Index.aspx
│ │ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ │ └── Index.aspx.designer.cs
│ │ │ │ │ ├── Index.aspx
│ │ │ │ │ ├── Index.aspx.cs
│ │ │ │ │ ├── Index.aspx.designer.cs
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ └── jquery.min.js
│ │ │ │ │ ├── Library.csproj
│ │ │ │ │ ├── Library.csproj.user
│ │ │ │ │ ├── Properties
│ │ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ │ └── PublishProfiles
│ │ │ │ │ │ └── FolderProfile.pubxml
│ │ │ │ │ ├── Resources
│ │ │ │ │ │ └── index.jpg
│ │ │ │ │ ├── Web.config
│ │ │ │ │ ├── Web.Debug.config
│ │ │ │ │ └── Web.Release.config
│ │ │ │ └── TempBuildDir
│ │ │ │ ├── Admin
│ │ │ │ │ ├── Book
│ │ │ │ │ │ ├── Book_Add.aspx
│ │ │ │ │ │ ├── Book_edit.aspx
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Borrow
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Index
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── List
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ └── User
│ │ │ │ │ ├── Index.aspx
│ │ │ │ │ ├── User_Add.aspx
│ │ │ │ │ └── User_Manage.aspx
│ │ │ │ ├── bin
│ │ │ │ │ ├── admin.master.fdf7a39c.compiled
│ │ │ │ │ ├── App_Code.compiled
│ │ │ │ │ ├── App_Code.dll
│ │ │ │ │ ├── App_Web_2pe5adwa.dll
│ │ │ │ │ ├── App_Web_5wjsomvb.dll
│ │ │ │ │ ├── App_Web_b2h3xbih.dll
│ │ │ │ │ ├── App_Web_eatzstsc.dll
│ │ │ │ │ ├── App_Web_fuknq3uy.dll
│ │ │ │ │ ├── App_Web_gmhuu5ik.dll
│ │ │ │ │ ├── App_Web_gyggu2vi.dll
│ │ │ │ │ ├── App_Web_mupj2j2p.dll
│ │ │ │ │ ├── App_Web_nhf5obb1.dll
│ │ │ │ │ ├── App_Web_niufjtvi.dll
│ │ │ │ │ ├── App_Web_nnw5yqx3.dll
│ │ │ │ │ ├── App_Web_p3vocect.dll
│ │ │ │ │ ├── App_Web_qoms5x0j.dll
│ │ │ │ │ ├── book_add.aspx.cab0939c.compiled
│ │ │ │ │ ├── book_edit.aspx.cab0939c.compiled
│ │ │ │ │ ├── home.master.cc09902d.compiled
│ │ │ │ │ ├── index.aspx.1ae721f6.compiled
│ │ │ │ │ ├── index.aspx.1d5d38d6.compiled
│ │ │ │ │ ├── index.aspx.37764cd7.compiled
│ │ │ │ │ ├── index.aspx.4ef5071c.compiled
│ │ │ │ │ ├── index.aspx.56bf059d.compiled
│ │ │ │ │ ├── index.aspx.6c03a63e.compiled
│ │ │ │ │ ├── index.aspx.803b65fe.compiled
│ │ │ │ │ ├── index.aspx.cab0939c.compiled
│ │ │ │ │ ├── index.aspx.cdcab7d2.compiled
│ │ │ │ │ ├── index.aspx.d26f4cda.compiled
│ │ │ │ │ ├── index.aspx.e8aabecd.compiled
│ │ │ │ │ ├── Library.dll
│ │ │ │ │ ├── Library.pdb
│ │ │ │ │ ├── user_add.aspx.56bf059d.compiled
│ │ │ │ │ └── user_manage.aspx.56bf059d.compiled
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap.min.css
│ │ │ │ ├── Home
│ │ │ │ │ ├── Book
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Borrow
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Index
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── List
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ └── User
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── js
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ └── jquery.min.js
│ │ │ │ ├── Library.csproj
│ │ │ │ ├── Library.csproj.user
│ │ │ │ ├── PrecompiledApp.config
│ │ │ │ ├── Properties
│ │ │ │ │ └── PublishProfiles
│ │ │ │ │ └── FolderProfile.pubxml
│ │ │ │ ├── Resources
│ │ │ │ │ └── index.jpg
│ │ │ │ ├── Web.config
│ │ │ │ ├── Web.Debug.config
│ │ │ │ └── Web.Release.config
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Library.csprojAssemblyReference.cache
│ │ │ ├── Library.csproj.CoreCompileInputs.cache
│ │ │ ├── Library.csproj.FileListAbsolute.txt
│ │ │ ├── Library.csprojResolveAssemblyReference.cache
│ │ │ ├── Library.dll
│ │ │ ├── Library.pdb
│ │ │ ├── Package
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ └── __testMsDeployConnection__
│ │ └── Release
│ │ ├── AspnetCompileMerge
│ │ │ ├── Source
│ │ │ │ ├── Admin
│ │ │ │ │ ├── Admin.Master
│ │ │ │ │ ├── Book
│ │ │ │ │ │ ├── Book_Add.aspx
│ │ │ │ │ │ ├── Book_edit.aspx
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Borrow
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Index
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── List
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ └── User
│ │ │ │ │ ├── Index.aspx
│ │ │ │ │ ├── User_Add.aspx
│ │ │ │ │ └── User_Manage.aspx
│ │ │ │ ├── bin
│ │ │ │ │ ├── Library.dll
│ │ │ │ │ └── Library.pdb
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ └── bootstrap-table.css
│ │ │ │ ├── Home
│ │ │ │ │ ├── Book
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Borrow
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── Home.Master
│ │ │ │ │ ├── Index
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ ├── List
│ │ │ │ │ │ └── Index.aspx
│ │ │ │ │ └── User
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── js
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ ├── bootstrap-table.js
│ │ │ │ │ └── jquery.min.js
│ │ │ │ ├── Resources
│ │ │ │ │ ├── 105905-106.jpg
│ │ │ │ │ ├── 82839-106.jpg
│ │ │ │ │ └── index.jpg
│ │ │ │ └── Web.config
│ │ │ └── TempBuildDir
│ │ │ ├── Admin
│ │ │ │ ├── Admin.Master
│ │ │ │ ├── Book
│ │ │ │ │ ├── Book_Add.aspx
│ │ │ │ │ ├── Book_edit.aspx
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Borrow
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Index
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── List
│ │ │ │ │ └── Index.aspx
│ │ │ │ └── User
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── User_Add.aspx
│ │ │ │ └── User_Manage.aspx
│ │ │ ├── bin
│ │ │ │ ├── Library.dll
│ │ │ │ └── Library.pdb
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ └── bootstrap-table.css
│ │ │ ├── Home
│ │ │ │ ├── Book
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Borrow
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Home.Master
│ │ │ │ ├── Index
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── List
│ │ │ │ │ └── Index.aspx
│ │ │ │ └── User
│ │ │ │ └── Index.aspx
│ │ │ ├── Index.aspx
│ │ │ ├── js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── bootstrap-table.js
│ │ │ │ └── jquery.min.js
│ │ │ ├── PrecompiledApp.config
│ │ │ ├── Resources
│ │ │ │ ├── 105905-106.jpg
│ │ │ │ ├── 82839-106.jpg
│ │ │ │ └── index.jpg
│ │ │ └── Web.config
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Library.csprojAssemblyReference.cache
│ │ ├── Library.csproj.CoreCompileInputs.cache
│ │ ├── Library.csproj.FileListAbsolute.txt
│ │ ├── Library.dll
│ │ ├── Library.pdb
│ │ ├── Package
│ │ │ └── PackageTmp
│ │ │ ├── Admin
│ │ │ │ ├── Admin.Master
│ │ │ │ ├── Book
│ │ │ │ │ ├── Book_Add.aspx
│ │ │ │ │ ├── Book_edit.aspx
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Borrow
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Index
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── List
│ │ │ │ │ └── Index.aspx
│ │ │ │ └── User
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── User_Add.aspx
│ │ │ │ └── User_Manage.aspx
│ │ │ ├── bin
│ │ │ │ ├── Library.dll
│ │ │ │ └── Library.pdb
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ └── bootstrap-table.css
│ │ │ ├── Home
│ │ │ │ ├── Book
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Borrow
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── Home.Master
│ │ │ │ ├── Index
│ │ │ │ │ └── Index.aspx
│ │ │ │ ├── List
│ │ │ │ │ └── Index.aspx
│ │ │ │ └── User
│ │ │ │ └── Index.aspx
│ │ │ ├── Index.aspx
│ │ │ ├── js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── bootstrap-table.js
│ │ │ │ └── jquery.min.js
│ │ │ ├── PrecompiledApp.config
│ │ │ ├── Resources
│ │ │ │ ├── 105905-106.jpg
│ │ │ │ ├── 82839-106.jpg
│ │ │ │ └── index.jpg
│ │ │ └── Web.config
│ │ ├── ProfileTransformWebConfig
│ │ │ └── transformed
│ │ ├── TempPE
│ │ ├── TransformWebConfig
│ │ │ ├── assist
│ │ │ │ └── Web.config
│ │ │ ├── original
│ │ │ │ └── Web.config
│ │ │ └── transformed
│ │ │ └── Web.config
│ │ └── _WPPLastBuildInfo.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ ├── FolderProfile.pubxml
│ │ └── FolderProfile.pubxml.user
│ ├── Resources
│ │ ├── 105905-106.jpg
│ │ ├── 82839-106.jpg
│ │ └── index.jpg
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── Library.sln
└── sql
└── Library.bak
129 directories, 311 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论