在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 点餐系统

点餐系统

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:15.08M
  • 下载次数:44
  • 浏览次数:365
  • 发布时间:2022-04-28
  • 实例类别:C#语言基础
  • 发 布 人:黄老四啊
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 系统 点餐

实例介绍

【实例简介】点餐系统

【实例截图】

from clipboardfrom clipboardfrom clipboard

【核心代码】

.
├── DB
│   ├── restaurantSys.mdf
│   └── restaurantSys_log.ldf
├── RestaurantSystem
│   ├── BLL
│   │   ├── BLL.csproj
│   │   ├── GetableBLL.cs
│   │   ├── MenuBLL.cs
│   │   ├── Menu_TypeBLL.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── RestOrderBLL.cs
│   │   ├── SelectPeoTableBLL.cs
│   │   ├── TableBLL.cs
│   │   ├── Table_SatausBLL.cs
│   │   ├── UserInfoBLL.cs
│   │   ├── User_PrivilegeBLL.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── BLL.dll
│   │   │       ├── BLL.pdb
│   │   │       ├── DAL.dll
│   │   │       ├── DAL.pdb
│   │   │       ├── DBContext.dll
│   │   │       ├── DBContext.pdb
│   │   │       ├── Model.dll
│   │   │       └── Model.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── BLL.csproj.CopyComplete
│   │       │   ├── BLL.csproj.CoreCompileInputs.cache
│   │       │   ├── BLL.csproj.FileListAbsolute.txt
│   │       │   ├── BLL.csprojAssemblyReference.cache
│   │       │   ├── BLL.csprojResolveAssemblyReference.cache
│   │       │   ├── BLL.dll
│   │       │   ├── BLL.pdb
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── TempPE
│   │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │       │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │       └── Release
│   │           └── BLL.csproj.CoreCompileInputs.cache
│   ├── DAL
│   │   ├── DAL.csproj
│   │   ├── GetableDAL.cs
│   │   ├── MenuDAL.cs
│   │   ├── Menu_TypeDAL.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── RestOrderDal.cs
│   │   ├── SelectPeoTableDAL.cs
│   │   ├── Service References
│   │   ├── TableDAL.cs
│   │   ├── Table_StatusDAL.cs
│   │   ├── UserInfoDAL.cs
│   │   ├── User_PrivilegeDAL.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── DAL.dll
│   │   │       ├── DAL.pdb
│   │   │       ├── DBContext.dll
│   │   │       ├── DBContext.pdb
│   │   │       ├── Model.dll
│   │   │       └── Model.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── DAL.csproj.CopyComplete
│   │       │   ├── DAL.csproj.CoreCompileInputs.cache
│   │       │   ├── DAL.csproj.FileListAbsolute.txt
│   │       │   ├── DAL.csprojAssemblyReference.cache
│   │       │   ├── DAL.csprojResolveAssemblyReference.cache
│   │       │   ├── DAL.dll
│   │       │   ├── DAL.pdb
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── TempPE
│   │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │       │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │       └── Release
│   │           ├── DAL.csproj.CoreCompileInputs.cache
│   │           └── DAL.csprojAssemblyReference.cache
│   ├── DBContext
│   │   ├── DBContext.csproj
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SQLHelper.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── DBContext.dll
│   │   │       └── DBContext.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── DBContext.csproj.CoreCompileInputs.cache
│   │       │   ├── DBContext.csproj.FileListAbsolute.txt
│   │       │   ├── DBContext.csprojAssemblyReference.cache
│   │       │   ├── DBContext.dll
│   │       │   ├── DBContext.pdb
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── TempPE
│   │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │       │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │       └── Release
│   │           └── DBContext.csproj.CoreCompileInputs.cache
│   ├── Model
│   │   ├── CheckStatusEnity.cs
│   │   ├── MenuEnity.cs
│   │   ├── Menu_TypeEnity.cs
│   │   ├── Model.csproj
│   │   ├── OrderDetailEnity.cs
│   │   ├── OrderEnity.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── ShowMenuEnity.cs
│   │   ├── TableEnity.cs
│   │   ├── TableStatus.cs
│   │   ├── Table_StatusEnity.cs
│   │   ├── TableaEnity.cs
│   │   ├── UserInfoEnity.cs
│   │   ├── User_PrivilegeEnity.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── Model.dll
│   │   │       └── Model.pdb
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── Model.csproj.CoreCompileInputs.cache
│   │       │   ├── Model.csproj.FileListAbsolute.txt
│   │       │   ├── Model.csprojAssemblyReference.cache
│   │       │   ├── Model.dll
│   │       │   ├── Model.pdb
│   │       │   ├── TempPE
│   │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │       │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │       └── Release
│   │           └── Model.csproj.CoreCompileInputs.cache
│   ├── Program.cs
│   ├── RestaurantSystem
│   │   ├── AddDish.aspx
│   │   ├── AddDish.aspx.cs
│   │   ├── AddDish.aspx.designer.cs
│   │   ├── AddMenu.aspx
│   │   ├── AddMenu.aspx.cs
│   │   ├── AddMenu.aspx.designer.cs
│   │   ├── AddTable.aspx
│   │   ├── AddTable.aspx.cs
│   │   ├── AddTable.aspx.designer.cs
│   │   ├── Admin.aspx
│   │   ├── Admin.aspx.cs
│   │   ├── Admin.aspx.designer.cs
│   │   ├── AdminIndex.aspx
│   │   ├── AdminIndex.aspx.cs
│   │   ├── AdminIndex.aspx.designer.cs
│   │   ├── AlterMenu.aspx
│   │   ├── AlterMenu.aspx.cs
│   │   ├── AlterMenu.aspx.designer.cs
│   │   ├── AlterTable.aspx
│   │   ├── AlterTable.aspx.cs
│   │   ├── AlterTable.aspx.designer.cs
│   │   ├── App_Data
│   │   ├── ChangeTable.aspx
│   │   ├── ChangeTable.aspx.cs
│   │   ├── ChangeTable.aspx.designer.cs
│   │   ├── CheckOut.aspx
│   │   ├── CheckOut.aspx.cs
│   │   ├── CheckOut.aspx.designer.cs
│   │   ├── Chef.aspx
│   │   ├── Chef.aspx.cs
│   │   ├── Chef.aspx.designer.cs
│   │   ├── Content
│   │   │   ├── Site.css
│   │   │   └── themes
│   │   │       └── base
│   │   │           ├── images
│   │   │           │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │           │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │           │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │           │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │           │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │           │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │           │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │           │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │           │   ├── ui-icons_222222_256x240.png
│   │   │           │   ├── ui-icons_2e83ff_256x240.png
│   │   │           │   ├── ui-icons_454545_256x240.png
│   │   │           │   ├── ui-icons_888888_256x240.png
│   │   │           │   └── ui-icons_cd0a0a_256x240.png
│   │   │           ├── jquery-ui.css
│   │   │           ├── jquery.ui.accordion.css
│   │   │           ├── jquery.ui.all.css
│   │   │           ├── jquery.ui.autocomplete.css
│   │   │           ├── jquery.ui.base.css
│   │   │           ├── jquery.ui.button.css
│   │   │           ├── jquery.ui.core.css
│   │   │           ├── jquery.ui.datepicker.css
│   │   │           ├── jquery.ui.dialog.css
│   │   │           ├── jquery.ui.progressbar.css
│   │   │           ├── jquery.ui.resizable.css
│   │   │           ├── jquery.ui.selectable.css
│   │   │           ├── jquery.ui.slider.css
│   │   │           ├── jquery.ui.tabs.css
│   │   │           ├── jquery.ui.theme.css
│   │   │           └── minified
│   │   │               ├── images
│   │   │               │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │               │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │               │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │               │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │               │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │               │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │               │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │               │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │               │   ├── ui-icons_222222_256x240.png
│   │   │               │   ├── ui-icons_2e83ff_256x240.png
│   │   │               │   ├── ui-icons_454545_256x240.png
│   │   │               │   ├── ui-icons_888888_256x240.png
│   │   │               │   └── ui-icons_cd0a0a_256x240.png
│   │   │               ├── jquery-ui.min.css
│   │   │               ├── jquery.ui.accordion.min.css
│   │   │               ├── jquery.ui.autocomplete.min.css
│   │   │               ├── jquery.ui.button.min.css
│   │   │               ├── jquery.ui.core.min.css
│   │   │               ├── jquery.ui.datepicker.min.css
│   │   │               ├── jquery.ui.dialog.min.css
│   │   │               ├── jquery.ui.progressbar.min.css
│   │   │               ├── jquery.ui.resizable.min.css
│   │   │               ├── jquery.ui.selectable.min.css
│   │   │               ├── jquery.ui.slider.min.css
│   │   │               ├── jquery.ui.tabs.min.css
│   │   │               └── jquery.ui.theme.min.css
│   │   ├── Global.asax
│   │   ├── Global.asax.cs
│   │   ├── Login.aspx
│   │   ├── Login.aspx.cs
│   │   ├── Login.aspx.designer.cs
│   │   ├── MasterPage1.Master
│   │   ├── MasterPage1.Master.cs
│   │   ├── MasterPage1.Master.designer.cs
│   │   ├── MasterPage2.Master
│   │   ├── MasterPage2.Master.cs
│   │   ├── MasterPage2.Master.designer.cs
│   │   ├── MasterPage3.Master
│   │   ├── MasterPage3.Master.cs
│   │   ├── MasterPage3.Master.designer.cs
│   │   ├── OrderDish.aspx
│   │   ├── OrderDish.aspx.cs
│   │   ├── OrderDish.aspx.designer.cs
│   │   ├── OrderDish2.aspx
│   │   ├── OrderDish2.aspx.cs
│   │   ├── OrderDish2.aspx.designer.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── RestaurantSystem.csproj
│   │   ├── RestaurantSystem.csproj.user
│   │   ├── SelectPeoTable.aspx
│   │   ├── SelectPeoTable.aspx.cs
│   │   ├── SelectPeoTable.aspx.designer.cs
│   │   ├── SelectTable.aspx
│   │   ├── SelectTable.aspx.cs
│   │   ├── SelectTable.aspx.designer.cs
│   │   ├── Web.Debug.config
│   │   ├── Web.Release.config
│   │   ├── Web.config
│   │   ├── addUser.aspx
│   │   ├── addUser.aspx.cs
│   │   ├── addUser.aspx.designer.cs
│   │   ├── admin_error.aspx
│   │   ├── admin_error.aspx.cs
│   │   ├── admin_error.aspx.designer.cs
│   │   ├── bin
│   │   │   ├── Antlr3.Runtime.dll
│   │   │   ├── AspNet.ScriptManager.jQuery.UI.Combined.dll
│   │   │   ├── AspNet.ScriptManager.jQuery.dll
│   │   │   ├── BLL.dll
│   │   │   ├── BLL.pdb
│   │   │   ├── DAL.dll
│   │   │   ├── DAL.pdb
│   │   │   ├── DBContext.dll
│   │   │   ├── DBContext.pdb
│   │   │   ├── DotNetOpenAuth.AspNet.dll
│   │   │   ├── DotNetOpenAuth.AspNet.xml
│   │   │   ├── DotNetOpenAuth.Core.dll
│   │   │   ├── DotNetOpenAuth.Core.xml
│   │   │   ├── DotNetOpenAuth.OAuth.Consumer.dll
│   │   │   ├── DotNetOpenAuth.OAuth.Consumer.xml
│   │   │   ├── DotNetOpenAuth.OAuth.dll
│   │   │   ├── DotNetOpenAuth.OAuth.xml
│   │   │   ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│   │   │   ├── DotNetOpenAuth.OpenId.RelyingParty.xml
│   │   │   ├── DotNetOpenAuth.OpenId.dll
│   │   │   ├── DotNetOpenAuth.OpenId.xml
│   │   │   ├── EntityFramework.dll
│   │   │   ├── EntityFramework.xml
│   │   │   ├── Microsoft.AspNet.Membership.OpenAuth.dll
│   │   │   ├── Microsoft.AspNet.Web.Optimization.WebForms.dll
│   │   │   ├── Microsoft.ScriptManager.MSAjax.dll
│   │   │   ├── Microsoft.ScriptManager.WebForms.dll
│   │   │   ├── Microsoft.Web.Infrastructure.dll
│   │   │   ├── Model.dll
│   │   │   ├── Model.pdb
│   │   │   ├── RestaurantSystem.dll
│   │   │   ├── RestaurantSystem.dll.CodeAnalysisLog.xml
│   │   │   ├── RestaurantSystem.dll.config
│   │   │   ├── RestaurantSystem.dll.lastcodeanalysissucceeded
│   │   │   ├── RestaurantSystem.pdb
│   │   │   ├── System.Web.Optimization.dll
│   │   │   ├── System.Web.Providers.dll
│   │   │   ├── WebGrease.dll
│   │   │   └── zh-Hans
│   │   │       ├── EntityFramework.resources.dll
│   │   │       ├── Microsoft.AspNet.Membership.OpenAuth.resources.dll
│   │   │       ├── System.Web.Optimization.resources.dll
│   │   │       └── System.Web.Providers.resources.dll
│   │   ├── images
│   │   │   ├── Chef.jpg
│   │   │   ├── Manager.jpg
│   │   │   ├── Staple  Food_0001.jpg
│   │   │   ├── Staple  Food_0002.jpg
│   │   │   ├── Staple  Food_0003.jpg
│   │   │   ├── Staple  Food_0004.jpg
│   │   │   ├── Staple  Food_0005.jpg
│   │   │   ├── Staple  Food_0006.jpg
│   │   │   ├── Staple  Food_0007.jpg
│   │   │   ├── Waiter.jpg
│   │   │   ├── b_1314180511137.jpg
│   │   │   ├── cold_0001.jpg
│   │   │   ├── cold_0002.jpg
│   │   │   ├── cold_0003.jpg
│   │   │   ├── cold_0004.jpg
│   │   │   ├── cold_0005.jpg
│   │   │   ├── cold_0006.jpg
│   │   │   ├── drinks_0001.jpg
│   │   │   ├── drinks_0002.jpg
│   │   │   ├── drinks_0003.jpg
│   │   │   ├── drinks_0004.jpg
│   │   │   ├── drinks_0005.jpg
│   │   │   ├── drinks_0006.jpg
│   │   │   ├── drinks_0007.jpg
│   │   │   ├── drinks_0008.jpg
│   │   │   ├── drinks_0009.jpg
│   │   │   ├── drinks_0010.jpg
│   │   │   ├── drinks_0011.jpg
│   │   │   ├── drinks_0012.jpg
│   │   │   ├── drinks_0013.jpg
│   │   │   ├── drinks_0014.jpg
│   │   │   ├── drinks_0015.jpg
│   │   │   ├── hot_0001.jpg
│   │   │   ├── hot_0002.jpg
│   │   │   ├── hot_0003.jpg
│   │   │   ├── hot_0004.jpg
│   │   │   ├── hot_0005.jpg
│   │   │   ├── hot_0006.jpg
│   │   │   ├── hot_0007.jpg
│   │   │   ├── hot_0008.jpg
│   │   │   ├── hot_0009.jpg
│   │   │   ├── hot_0010.jpg
│   │   │   ├── hot_0011.jpg
│   │   │   ├── hot_0012.jpg
│   │   │   ├── hot_0013.jpg
│   │   │   ├── hot_0014.jpg
│   │   │   ├── hot_0015.jpg
│   │   │   ├── hot_0016.jpg
│   │   │   ├── hot_0017.jpg
│   │   │   ├── hot_0018.jpg
│   │   │   ├── hot_0019.jpg
│   │   │   ├── hot_0020.jpg
│   │   │   ├── hot_0021.jpg
│   │   │   ├── hot_0022.jpg
│   │   │   ├── hot_0023.jpg
│   │   │   ├── index.jpg
│   │   │   ├── logo.psd
│   │   │   ├── soup_0001.jpg
│   │   │   ├── soup_0002.jpg
│   │   │   ├── soup_0003.jpg
│   │   │   ├── soup_0004.jpg
│   │   │   ├── soup_0005.jpg
│   │   │   ├── soup_0006.jpg
│   │   │   ├── soup_0007.jpg
│   │   │   ├── soup_0008.jpg
│   │   │   ├── soup_0009.jpg
│   │   │   ├── soup_0010.jpg
│   │   │   ├── soup_0011.jpg
│   │   │   ├── special_0001.jpg
│   │   │   ├── special_0002.jpg
│   │   │   ├── special_0003.jpg
│   │   │   ├── special_0004.jpg
│   │   │   ├── special_0005.jpg
│   │   │   ├── special_0006.jpg
│   │   │   ├── special_0007.jpg
│   │   │   └── special_0008.jpg
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── RestaurantSystem.csproj.CopyComplete
│   │   │   │   ├── RestaurantSystem.csproj.CoreCompileInputs.cache
│   │   │   │   ├── RestaurantSystem.csproj.FileListAbsolute.txt
│   │   │   │   ├── RestaurantSystem.csprojAssemblyReference.cache
│   │   │   │   ├── RestaurantSystem.csprojResolveAssemblyReference.cache
│   │   │   │   ├── RestaurantSystem.dll
│   │   │   │   ├── RestaurantSystem.pdb
│   │   │   │   ├── TempPE
│   │   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   │   └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   └── Release
│   │   │       └── RestaurantSystem.csproj.CoreCompileInputs.cache
│   │   └── packages.config
│   ├── RestaurantSystem.csproj
│   ├── RestaurantSystem.sln
│   ├── RestaurantSystem.v11.suo
│   ├── obj
│   │   ├── Debug
│   │   │   └── netcoreapp2.0
│   │   │       ├── RestaurantSystem.AssemblyInfo.cs
│   │   │       ├── RestaurantSystem.AssemblyInfoInputs.cache
│   │   │       ├── RestaurantSystem.assets.cache
│   │   │       ├── RestaurantSystem.csproj.CoreCompileInputs.cache
│   │   │       ├── RestaurantSystem.csproj.FileListAbsolute.txt
│   │   │       └── RestaurantSystem.csprojAssemblyReference.cache
│   │   ├── Release
│   │   │   └── netcoreapp2.0
│   │   │       ├── RestaurantSystem.AssemblyInfo.cs
│   │   │       ├── RestaurantSystem.AssemblyInfoInputs.cache
│   │   │       ├── RestaurantSystem.assets.cache
│   │   │       └── RestaurantSystem.csproj.CoreCompileInputs.cache
│   │   ├── RestaurantSystem.csproj.nuget.cache
│   │   ├── RestaurantSystem.csproj.nuget.g.props
│   │   ├── RestaurantSystem.csproj.nuget.g.targets
│   │   └── project.assets.json
│   └── packages
│       ├── AspNet.ScriptManager.jQuery.1.7.1
│       │   ├── AspNet.ScriptManager.jQuery.1.7.1.nupkg
│       │   └── lib
│       │       ├── net40
│       │       │   └── AspNet.ScriptManager.jQuery.dll
│       │       └── net45
│       │           └── AspNet.ScriptManager.jQuery.dll
│       ├── AspNet.ScriptManager.jQuery.UI.Combined.1.8.20
│       │   ├── AspNet.ScriptManager.jQuery.UI.Combined.1.8.20.nupkg
│       │   └── lib
│       │       ├── net40
│       │       │   └── AspNet.ScriptManager.jQuery.UI.Combined.dll
│       │       └── net45
│       │           └── AspNet.ScriptManager.jQuery.UI.Combined.dll
│       ├── DotNetOpenAuth.AspNet.4.0.3.12153
│       │   ├── DotNetOpenAuth.AspNet.4.0.3.12153.nupkg
│       │   └── lib
│       │       └── net40-full
│       │           ├── DotNetOpenAuth.AspNet.dll
│       │           └── DotNetOpenAuth.AspNet.xml
│       ├── DotNetOpenAuth.Core.4.0.3.12153
│       │   ├── DotNetOpenAuth.Core.4.0.3.12153.nupkg
│       │   └── lib
│       │       └── net40-full
│       │           ├── DotNetOpenAuth.Core.dll
│       │           └── DotNetOpenAuth.Core.xml
│       ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153
│       │   ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg
│       │   └── lib
│       │       └── net40-full
│       │           ├── DotNetOpenAuth.OAuth.Consumer.dll
│       │           └── DotNetOpenAuth.OAuth.Consumer.xml
│       ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153
│       │   ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg
│       │   └── lib
│       │       └── net40-full
│       │           ├── DotNetOpenAuth.OAuth.dll
│       │           └── DotNetOpenAuth.OAuth.xml
│       ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153
│       │   ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg
│       │   └── lib
│       │       └── net40-full
│       │           ├── DotNetOpenAuth.OpenId.dll
│       │           └── DotNetOpenAuth.OpenId.xml
│       ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153
│       │   ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg
│       │   └── lib
│       │       └── net40-full
│       │           ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│       │           └── DotNetOpenAuth.OpenId.RelyingParty.xml
│       ├── EntityFramework.5.0.0
│       │   ├── Content
│       │   │   ├── App.config.transform
│       │   │   └── Web.config.transform
│       │   ├── EntityFramework.5.0.0.nupkg
│       │   ├── lib
│       │   │   ├── net40
│       │   │   │   ├── EntityFramework.dll
│       │   │   │   ├── EntityFramework.xml
│       │   │   │   └── zh-Hans
│       │   │   │       ├── EntityFramework.resources.dll
│       │   │   │       └── EntityFramework.xml
│       │   │   └── net45
│       │   │       ├── EntityFramework.dll
│       │   │       ├── EntityFramework.xml
│       │   │       └── zh-Hans
│       │   │           ├── EntityFramework.resources.dll
│       │   │           └── EntityFramework.xml
│       │   └── tools
│       │       ├── EntityFramework.PS3.psd1
│       │       ├── EntityFramework.PowerShell.Utility.dll
│       │       ├── EntityFramework.PowerShell.dll
│       │       ├── EntityFramework.psd1
│       │       ├── EntityFramework.psm1
│       │       ├── Redirect.VS11.config
│       │       ├── Redirect.config
│       │       ├── about_EntityFramework.help.txt
│       │       ├── init.ps1
│       │       ├── install.ps1
│       │       └── migrate.exe
│       ├── EntityFramework.zh-Hans.5.0.0
│       │   ├── EntityFramework.zh-Hans.5.0.0.nupkg
│       │   └── lib
│       │       ├── net40
│       │       │   └── zh-Hans
│       │       │       ├── EntityFramework.resources.dll
│       │       │       └── EntityFramework.xml
│       │       └── net45
│       │           └── zh-Hans
│       │               ├── EntityFramework.resources.dll
│       │               └── EntityFramework.xml
│       ├── Microsoft.AspNet.Membership.OpenAuth.1.0.0
│       │   ├── Microsoft.AspNet.Membership.OpenAuth.1.0.0.nupkg
│       │   └── lib
│       │       ├── net40
│       │       │   ├── Microsoft.AspNet.Membership.OpenAuth.dll
│       │       │   └── zh-Hans
│       │       │       └── Microsoft.AspNet.Membership.OpenAuth.resources.dll
│       │       └── net45
│       │           ├── Microsoft.AspNet.Membership.OpenAuth.dll
│       │           └── zh-Hans
│       │               └── Microsoft.AspNet.Membership.OpenAuth.resources.dll
│       ├── Microsoft.AspNet.Membership.OpenAuth.zh-Hans.1.0.0
│       │   ├── Microsoft.AspNet.Membership.OpenAuth.zh-Hans.1.0.0.nupkg
│       │   └── lib
│       │       ├── net40
│       │       │   └── zh-Hans
│       │       │       └── Microsoft.AspNet.Membership.OpenAuth.resources.dll
│       │       └── net45
│       │           └── zh-Hans
│       │               └── Microsoft.AspNet.Membership.OpenAuth.resources.dll
│       ├── Microsoft.AspNet.Providers.Core.1.1
│       │   ├── Microsoft.AspNet.Providers.Core.1.1.nupkg
│       │   ├── lib
│       │   │   └── net40
│       │   │       ├── System.Web.Providers.dll
│       │   │       └── zh-Hans
│       │   │           └── System.Web.Providers.resources.dll
│       │   └── readme.html
│       ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.1
│       │   ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.1.nupkg
│       │   └── lib
│       │       └── net40
│       │           └── zh-Hans
│       │               └── System.Web.Providers.resources.dll
│       ├── Microsoft.AspNet.Providers.LocalDB.1.1
│       │   ├── Microsoft.AspNet.Providers.LocalDB.1.1.nupkg
│       │   ├── content
│       │   │   └── web.config.transform
│       │   └── tools
│       │       └── Install.ps1
│       ├── Microsoft.AspNet.ScriptManager.MSAjax.4.5.6
│       │   ├── Microsoft.AspNet.ScriptManager.MSAjax.4.5.6.nupkg
│       │   ├── content
│       │   │   └── Scripts
│       │   │       └── WebForms
│       │   │           └── MSAjax
│       │   │               ├── MicrosoftAjax.js
│       │   │               ├── MicrosoftAjaxApplicationServices.js
│       │   │               ├── MicrosoftAjaxComponentModel.js
│       │   │               ├── MicrosoftAjaxCore.js
│       │   │               ├── MicrosoftAjaxGlobalization.js
│       │   │               ├── MicrosoftAjaxHistory.js
│       │   │               ├── MicrosoftAjaxNetwork.js
│       │   │               ├── MicrosoftAjaxSerialization.js
│       │   │               ├── MicrosoftAjaxTimer.js
│       │   │               ├── MicrosoftAjaxWebForms.js
│       │   │               └── MicrosoftAjaxWebServices.js
│       │   └── lib
│       │       └── net45
│       │           └── Microsoft.ScriptManager.MSAjax.dll
│       ├── Microsoft.AspNet.ScriptManager.WebForms.4.5.6
│       │   ├── Microsoft.AspNet.ScriptManager.WebForms.4.5.6.nupkg
│       │   ├── content
│       │   │   └── Scripts
│       │   │       └── WebForms
│       │   │           ├── DetailsView.js
│       │   │           ├── Focus.js
│       │   │           ├── GridView.js
│       │   │           ├── Menu.js
│       │   │           ├── MenuStandards.js
│       │   │           ├── SmartNav.js
│       │   │           ├── TreeView.js
│       │   │           ├── WebForms.js
│       │   │           ├── WebParts.js
│       │   │           └── WebUIValidation.js
│       │   └── lib
│       │       └── net45
│       │           └── Microsoft.ScriptManager.WebForms.dll
│       ├── Microsoft.AspNet.Web.Optimization.1.0.0
│       │   ├── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg
│       │   └── lib
│       │       └── net40
│       │           ├── System.Web.Optimization.dll
│       │           └── zh-Hans
│       │               └── System.Web.Optimization.resources.dll
│       ├── Microsoft.AspNet.Web.Optimization.WebForms.1.0.0
│       │   ├── Microsoft.AspNet.Web.Optimization.WebForms.1.0.0.nupkg
│       │   ├── content
│       │   │   └── web.config.transform
│       │   └── lib
│       │       └── net45
│       │           └── Microsoft.AspNet.Web.Optimization.WebForms.dll
│       ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0
│       │   ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg
│       │   └── lib
│       │       └── net40
│       │           └── zh-Hans
│       │               └── System.Web.Optimization.resources.dll
│       ├── Microsoft.Web.Infrastructure.1.0.0.0
│       │   ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│       │   ├── lib
│       │   │   └── net40
│       │   │       └── Microsoft.Web.Infrastructure.dll
│       │   └── tools
│       │       ├── Install.ps1
│       │       ├── Uninstall.ps1
│       │       ├── VS.psd1
│       │       └── VS.psm1
│       ├── Modernizr.2.5.3
│       │   ├── Content
│       │   │   └── Scripts
│       │   │       └── modernizr-2.5.3.js
│       │   └── Modernizr.2.5.3.nupkg
│       ├── WebGrease.1.1.0
│       │   ├── WebGrease.1.1.0.nupkg
│       │   ├── lib
│       │   │   ├── Antlr3.Runtime.dll
│       │   │   └── WebGrease.dll
│       │   └── tools
│       │       └── WG.exe
│       ├── jQuery.1.7.1.1
│       │   ├── Content
│       │   │   └── Scripts
│       │   │       ├── jquery-1.7.1-vsdoc.js
│       │   │       ├── jquery-1.7.1.js
│       │   │       └── jquery-1.7.1.min.js
│       │   ├── Tools
│       │   │   ├── common.ps1
│       │   │   ├── install.ps1
│       │   │   ├── jquery-1.7.1.intellisense.js
│       │   │   └── uninstall.ps1
│       │   └── jQuery.1.7.1.1.nupkg
│       ├── jQuery.UI.Combined.1.8.20.1
│       │   ├── Content
│       │   │   ├── Content
│       │   │   │   └── themes
│       │   │   │       └── base
│       │   │   │           ├── images
│       │   │   │           │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│       │   │   │           │   ├── ui-bg_flat_75_ffffff_40x100.png
│       │   │   │           │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│       │   │   │           │   ├── ui-bg_glass_65_ffffff_1x400.png
│       │   │   │           │   ├── ui-bg_glass_75_dadada_1x400.png
│       │   │   │           │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│       │   │   │           │   ├── ui-bg_glass_95_fef1ec_1x400.png
│       │   │   │           │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│       │   │   │           │   ├── ui-icons_222222_256x240.png
│       │   │   │           │   ├── ui-icons_2e83ff_256x240.png
│       │   │   │           │   ├── ui-icons_454545_256x240.png
│       │   │   │           │   ├── ui-icons_888888_256x240.png
│       │   │   │           │   └── ui-icons_cd0a0a_256x240.png
│       │   │   │           ├── jquery-ui.css
│       │   │   │           ├── jquery.ui.accordion.css
│       │   │   │           ├── jquery.ui.all.css
│       │   │   │           ├── jquery.ui.autocomplete.css
│       │   │   │           ├── jquery.ui.base.css
│       │   │   │           ├── jquery.ui.button.css
│       │   │   │           ├── jquery.ui.core.css
│       │   │   │           ├── jquery.ui.datepicker.css
│       │   │   │           ├── jquery.ui.dialog.css
│       │   │   │           ├── jquery.ui.progressbar.css
│       │   │   │           ├── jquery.ui.resizable.css
│       │   │   │           ├── jquery.ui.selectable.css
│       │   │   │           ├── jquery.ui.slider.css
│       │   │   │           ├── jquery.ui.tabs.css
│       │   │   │           ├── jquery.ui.theme.css
│       │   │   │           └── minified
│       │   │   │               ├── images
│       │   │   │               │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│       │   │   │               │   ├── ui-bg_flat_75_ffffff_40x100.png
│       │   │   │               │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│       │   │   │               │   ├── ui-bg_glass_65_ffffff_1x400.png
│       │   │   │               │   ├── ui-bg_glass_75_dadada_1x400.png
│       │   │   │               │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│       │   │   │               │   ├── ui-bg_glass_95_fef1ec_1x400.png
│       │   │   │               │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│       │   │   │               │   ├── ui-icons_222222_256x240.png
│       │   │   │               │   ├── ui-icons_2e83ff_256x240.png
│       │   │   │               │   ├── ui-icons_454545_256x240.png
│       │   │   │               │   ├── ui-icons_888888_256x240.png
│       │   │   │               │   └── ui-icons_cd0a0a_256x240.png
│       │   │   │               ├── jquery-ui.min.css
│       │   │   │               ├── jquery.ui.accordion.min.css
│       │   │   │               ├── jquery.ui.autocomplete.min.css
│       │   │   │               ├── jquery.ui.button.min.css
│       │   │   │               ├── jquery.ui.core.min.css
│       │   │   │               ├── jquery.ui.datepicker.min.css
│       │   │   │               ├── jquery.ui.dialog.min.css
│       │   │   │               ├── jquery.ui.progressbar.min.css
│       │   │   │               ├── jquery.ui.resizable.min.css
│       │   │   │               ├── jquery.ui.selectable.min.css
│       │   │   │               ├── jquery.ui.slider.min.css
│       │   │   │               ├── jquery.ui.tabs.min.css
│       │   │   │               └── jquery.ui.theme.min.css
│       │   │   └── Scripts
│       │   │       ├── jquery-ui-1.8.20.js
│       │   │       └── jquery-ui-1.8.20.min.js
│       │   └── jQuery.UI.Combined.1.8.20.1.nupkg
│       └── repositories.config
├── ~$文档.docx
├── 文档.docx
└── 好例子网_点餐系统.rar

168 directories, 558 files


标签: 系统 点餐

网友评论

第 1 楼 木兮卿 发表于: 2022-05-05 07:40 54
怎么打开这个界面呢

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警