实例介绍
c#开发的客运站售票系统,采用bs三层架构。
【实例截图】
【核心代码】
edcfcdab-22f7-43e7-8184-77bd0471a388
└── 客运站售票系统
├── demo
│ ├── Business
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Business.dll
│ │ │ ├── Business.pdb
│ │ │ ├── DataAccess.dll
│ │ │ └── DataAccess.pdb
│ │ ├── Business.csproj
│ │ ├── Business.csproj.user
│ │ ├── ExceptionBusiness.cs
│ │ ├── FunBusiness.cs
│ │ ├── LimitsBusiness.cs
│ │ ├── MeException.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── Business.csproj.FileListAbsolute.txt
│ │ │ ├── Business.csproj.FileListAbsolute.txt.mine
│ │ │ ├── Business.csproj.FileListAbsolute.txt.r893
│ │ │ ├── Business.csproj.FileListAbsolute.txt.r908
│ │ │ ├── Business.dll
│ │ │ ├── Business.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache.r893
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache.r908
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── ResolveAssemblyReference.cache.r893
│ │ │ └── ResolveAssemblyReference.cache.r908
│ │ ├── PackageTicketBusiness.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ReceiveMoneyBusiness.cs
│ │ ├── RefundBusiness.cs
│ │ ├── RentBusBusiness.cs
│ │ ├── RentBusTicketBusiness.cs
│ │ ├── RetreatPackageTicketBusiness.cs
│ │ ├── RetreatRentBusTicketBusiness.cs
│ │ ├── RetreatTicketBusiness.cs
│ │ ├── RoleAndLimitsBusiness.cs
│ │ ├── RoleBusiness.cs
│ │ ├── SaveExceptionInfo.cs
│ │ ├── SiteBusiness.cs
│ │ ├── SystemTableBusiness.cs
│ │ ├── TicketBusiness.cs
│ │ ├── TrainsBusiness.cs
│ │ └── UserBusiness.cs
│ ├── DataAccess
│ │ ├── App.Config
│ │ ├── BaseParam.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── DataAccess.dll
│ │ │ ├── DataAccess.dll.config
│ │ │ ├── DataAccess.dll.r913
│ │ │ ├── DataAccess.dll.r944
│ │ │ ├── DataAccess.pdb
│ │ │ ├── DataAccess.pdb.r913
│ │ │ └── DataAccess.pdb.r944
│ │ ├── DataAccess.csproj
│ │ ├── DataAccess.csproj.user
│ │ ├── ExceptionQueryParam.cs
│ │ ├── ExceptionRepository.cs
│ │ ├── LimitsQueryParam.cs
│ │ ├── LimitsRepository.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DataAccess.csproj.FileListAbsolute.txt
│ │ │ ├── DataAccess.csproj.FileListAbsolute.txt.mine
│ │ │ ├── DataAccess.csproj.FileListAbsolute.txt.r893
│ │ │ ├── DataAccess.csproj.FileListAbsolute.txt.r908
│ │ │ ├── DataAccess.dll
│ │ │ ├── DataAccess.dll.r893
│ │ │ ├── DataAccess.dll.r908
│ │ │ ├── DataAccess.pdb
│ │ │ ├── DataAccess.pdb.r893
│ │ │ ├── DataAccess.pdb.r908
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache.r893
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache.r908
│ │ │ ├── edmxResourcesToEmbed
│ │ │ │ ├── SecondGroupsModel.csdl
│ │ │ │ ├── SecondGroupsModel.msl
│ │ │ │ └── SecondGroupsModel.ssdl
│ │ │ └── TempPE
│ │ │ ├── SecondGroupsModel.Designer.cs.dll
│ │ │ ├── SecondGroupsModel.Designer.cs.dll.r913
│ │ │ └── SecondGroupsModel.Designer.cs.dll.r944
│ │ ├── OperateStatus.cs
│ │ ├── PackageTicketQueryParam.cs
│ │ ├── PackageTicketRepository.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ReceiveMoneyQueryParam.cs
│ │ ├── ReceiveMoneyRepository.cs
│ │ ├── RefundQueryParam.cs
│ │ ├── RefundRepository.cs
│ │ ├── RentBusQueryParam.cs
│ │ ├── RentBusRepository.cs
│ │ ├── RentBusTicketQueryParam.cs
│ │ ├── RentBusTicketRespostory.cs
│ │ ├── RetreatPackageTicketQueryParam.cs
│ │ ├── RetreatPackageTicketRepository.cs
│ │ ├── RetreatRentBusTicketQueryParam.cs
│ │ ├── RetreatRentBusTicketRespostory.cs
│ │ ├── RetreatTicketQueryParam.cs
│ │ ├── RetreatTicketRepository.cs
│ │ ├── RoleAndLimitsQueryParam.cs
│ │ ├── RoleAndLimitsRepository.cs
│ │ ├── RoleQueryParam.cs
│ │ ├── RoleRepository.cs
│ │ ├── SecondGroupsModel.Designer.cs
│ │ ├── SecondGroupsModel.edmx
│ │ ├── SiteInfo.cs
│ │ ├── SiteQueryParam.cs
│ │ ├── SiteRepository.cs
│ │ ├── SiteTypeEnum.cs
│ │ ├── SystemTableQueryParam.cs
│ │ ├── SystemTableRespostory.cs
│ │ ├── TicketEnum.cs
│ │ ├── TicketEnumInChinese.cs
│ │ ├── TicketQueryParam.cs
│ │ ├── TicketRepository.cs
│ │ ├── TicketTypeEnum.cs
│ │ ├── TicketTypeStringEnum.cs
│ │ ├── TrainsQueryParam.cs
│ │ ├── TrainsRepository.cs
│ │ ├── UserQueryParam.cs
│ │ └── UserRepository.cs
│ ├── SecondGroup
│ │ ├── App_Code
│ │ │ ├── ChartsInfo.cs
│ │ │ ├── FunHelper.cs
│ │ │ ├── RetreatRentBusTicketInfo.cs
│ │ │ ├── RetreatTicketInfo.cs
│ │ │ ├── Series.cs
│ │ │ ├── StringCheck.cs
│ │ │ ├── TicketInfo.cs
│ │ │ └── UserAlwaysUse.cs
│ │ ├── bin
│ │ │ ├── AspNetPager.dll
│ │ │ ├── Business.dll
│ │ │ ├── Business.dll.r893
│ │ │ ├── Business.dll.r933
│ │ │ ├── Business.pdb
│ │ │ ├── Business.pdb.r893
│ │ │ ├── Business.pdb.r933
│ │ │ ├── DataAccess.dll
│ │ │ ├── DataAccess.dll.r893
│ │ │ ├── DataAccess.dll.r933
│ │ │ ├── DataAccess.pdb
│ │ │ ├── DataAccess.pdb.r893
│ │ │ ├── DataAccess.pdb.r933
│ │ │ ├── SecondGroup.dll
│ │ │ ├── SecondGroup.dll.r893
│ │ │ ├── SecondGroup.dll.r933
│ │ │ ├── SecondGroup.pdb
│ │ │ ├── SecondGroup.pdb.r893
│ │ │ └── SecondGroup.pdb.r933
│ │ ├── Content
│ │ │ ├── icon
│ │ │ │ ├── InformationInput.png
│ │ │ │ ├── Personalinformation.png
│ │ │ │ ├── RefundTicket.png
│ │ │ │ ├── Sellticket.png
│ │ │ │ ├── sitepicker.png
│ │ │ │ ├── SystemConfiguration.png
│ │ │ │ ├── Usermanagement.png
│ │ │ │ ├── 修改个人信息.png
│ │ │ │ ├── 修改密码.png
│ │ │ │ ├── 删除个人信息.png
│ │ │ │ ├── 售包车票.png
│ │ │ │ ├── 售普通票.png
│ │ │ │ ├── 售行包票.png
│ │ │ │ ├── 废票信息录入.png
│ │ │ │ ├── 查看统计.png
│ │ │ │ ├── 添加用户.png
│ │ │ │ ├── 添加角色.png
│ │ │ │ ├── 系统设置.png
│ │ │ │ ├── 编辑用户.png
│ │ │ │ ├── 编辑角色.png
│ │ │ │ ├── 补票信息录入.png
│ │ │ │ ├── 退包车票.png
│ │ │ │ ├── 退普通票.png
│ │ │ │ └── 退行包票.png
│ │ │ ├── images
│ │ │ │ ├── index_01.gif
│ │ │ │ ├── index_02.gif
│ │ │ │ ├── index_04.gif
│ │ │ │ ├── index_05.png
│ │ │ │ ├── index_101.png
│ │ │ │ ├── index_102.jpg
│ │ │ │ ├── index_103.jpg
│ │ │ │ ├── index_104.jpg
│ │ │ │ ├── index_106.jpg
│ │ │ │ ├── index_17.gif
│ │ │ │ ├── index_31.gif
│ │ │ │ ├── index_32.gif
│ │ │ │ ├── index_33.gif
│ │ │ │ ├── index_34.gif
│ │ │ │ ├── index_35.gif
│ │ │ │ ├── index_36.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── login_2.png
│ │ │ │ └── logo.jpg
│ │ │ ├── login.css
│ │ │ ├── publicSite.css
│ │ │ ├── Site.css
│ │ │ ├── SitePickerStyle.css
│ │ │ └── TicketsPage.css
│ │ ├── Controls
│ │ │ ├── SitePicker.ascx
│ │ │ ├── SitePicker.ascx.cs
│ │ │ └── SitePicker.ascx.designer.cs
│ │ ├── Fun
│ │ │ ├── GetCode.aspx
│ │ │ ├── GetCode.aspx.cs
│ │ │ ├── GetCode.aspx.designer.cs
│ │ │ ├── GetSite.aspx
│ │ │ ├── GetSite.aspx.cs
│ │ │ ├── GetSite.aspx.designer.cs
│ │ │ ├── PackageTicketBuy.aspx
│ │ │ ├── PackageTicketBuy.aspx.cs
│ │ │ ├── PackageTicketBuy.aspx.designer.cs
│ │ │ ├── TicketBuy.aspx
│ │ │ ├── TicketBuy.aspx.cs
│ │ │ ├── TicketBuy.aspx.designer.cs
│ │ │ ├── UnLogin.aspx
│ │ │ ├── UnLogin.aspx.cs
│ │ │ └── UnLogin.aspx.designer.cs
│ │ ├── Global.asax
│ │ ├── Global.asax.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── SecondGroup.csproj.FileListAbsolute.txt
│ │ │ ├── SecondGroup.dll
│ │ │ └── SecondGroup.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Scripts
│ │ │ ├── highcharts
│ │ │ │ ├── adapters
│ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ └── prototype-adapter.src.js
│ │ │ │ ├── highcharts.js
│ │ │ │ ├── highcharts.src.js
│ │ │ │ ├── modules
│ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ ├── exporting.js
│ │ │ │ │ └── exporting.src.js
│ │ │ │ └── themes
│ │ │ │ ├── dark-blue.js
│ │ │ │ ├── dark-green.js
│ │ │ │ ├── gray.js
│ │ │ │ ├── grid.js
│ │ │ │ └── skies.js
│ │ │ ├── jquery-easyui-1.2.5
│ │ │ │ ├── easyloader.js
│ │ │ │ ├── jquery-1.7.1.min.js
│ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ ├── locale
│ │ │ │ │ ├── easyui-lang-af.js
│ │ │ │ │ ├── easyui-lang-bg.js
│ │ │ │ │ ├── easyui-lang-ca.js
│ │ │ │ │ ├── easyui-lang-cs.js
│ │ │ │ │ ├── easyui-lang-cz.js
│ │ │ │ │ ├── easyui-lang-da.js
│ │ │ │ │ ├── easyui-lang-de.js
│ │ │ │ │ ├── easyui-lang-en.js
│ │ │ │ │ ├── easyui-lang-es.js
│ │ │ │ │ ├── easyui-lang-fr.js
│ │ │ │ │ ├── easyui-lang-nl.js
│ │ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ │ └── easyui-lang-zh_TW.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── jquery.accordion.js
│ │ │ │ │ ├── jquery.calendar.js
│ │ │ │ │ ├── jquery.combobox.js
│ │ │ │ │ ├── jquery.combogrid.js
│ │ │ │ │ ├── jquery.combo.js
│ │ │ │ │ ├── jquery.combotree.js
│ │ │ │ │ ├── jquery.datagrid.js
│ │ │ │ │ ├── jquery.datebox.js
│ │ │ │ │ ├── jquery.datetimebox.js
│ │ │ │ │ ├── jquery.dialog.js
│ │ │ │ │ ├── jquery.draggable.js
│ │ │ │ │ ├── jquery.droppable.js
│ │ │ │ │ ├── jquery.form.js
│ │ │ │ │ ├── jquery.layout.js
│ │ │ │ │ ├── jquery.linkbutton.js
│ │ │ │ │ ├── jquery.menubutton.js
│ │ │ │ │ ├── jquery.menu.js
│ │ │ │ │ ├── jquery.messager.js
│ │ │ │ │ ├── jquery.numberbox.js
│ │ │ │ │ ├── jquery.numberspinner.js
│ │ │ │ │ ├── jquery.pagination.js
│ │ │ │ │ ├── jquery.panel.js
│ │ │ │ │ ├── jquery.parser.js
│ │ │ │ │ ├── jquery.progressbar.js
│ │ │ │ │ ├── jquery.propertygrid.js
│ │ │ │ │ ├── jquery.resizable.js
│ │ │ │ │ ├── jquery.searchbox.js
│ │ │ │ │ ├── jquery.spinner.js
│ │ │ │ │ ├── jquery.splitbutton.js
│ │ │ │ │ ├── jquery.tabs.js
│ │ │ │ │ ├── jquery.timespinner.js
│ │ │ │ │ ├── jquery.treegrid.js
│ │ │ │ │ ├── jquery.tree.js
│ │ │ │ │ ├── jquery.validatebox.js
│ │ │ │ │ └── jquery.window.js
│ │ │ │ └── themes
│ │ │ │ ├── default
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_collapse.png
│ │ │ │ │ │ ├── accordion_expand.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── button_a_bg.gif
│ │ │ │ │ │ ├── button_plain_hover.png
│ │ │ │ │ │ ├── button_span_bg.gif
│ │ │ │ │ │ ├── calendar_nextmonth.gif
│ │ │ │ │ │ ├── calendar_nextyear.gif
│ │ │ │ │ │ ├── calendar_prevmonth.gif
│ │ │ │ │ │ ├── calendar_prevyear.gif
│ │ │ │ │ │ ├── combo_arrow.gif
│ │ │ │ │ │ ├── datagrid_header_bg.gif
│ │ │ │ │ │ ├── datagrid_row_collapse.gif
│ │ │ │ │ │ ├── datagrid_row_expand.gif
│ │ │ │ │ │ ├── datagrid_sort_asc.gif
│ │ │ │ │ │ ├── datagrid_sort_desc.gif
│ │ │ │ │ │ ├── datagrid_title_bg.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── menu_rightarrow.png
│ │ │ │ │ │ ├── menu_sep.png
│ │ │ │ │ │ ├── menu_split_downarrow.png
│ │ │ │ │ │ ├── messager_error.gif
│ │ │ │ │ │ ├── messager_info.gif
│ │ │ │ │ │ ├── messager_question.gif
│ │ │ │ │ │ ├── messager_warning.gif
│ │ │ │ │ │ ├── pagination_first.gif
│ │ │ │ │ │ ├── pagination_last.gif
│ │ │ │ │ │ ├── pagination_loading.gif
│ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ ├── panel_title.png
│ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ ├── panel_tools.gif
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── spinner_arrow_down.gif
│ │ │ │ │ │ ├── spinner_arrow_up.gif
│ │ │ │ │ │ ├── tabs_active.png
│ │ │ │ │ │ ├── tabs_close.gif
│ │ │ │ │ │ ├── tabs_enabled.png
│ │ │ │ │ │ ├── tabs_leftarrow.png
│ │ │ │ │ │ ├── tabs_rightarrow.png
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── tree_arrows.gif
│ │ │ │ │ │ ├── tree_checkbox_0.gif
│ │ │ │ │ │ ├── tree_checkbox_1.gif
│ │ │ │ │ │ ├── tree_checkbox_2.gif
│ │ │ │ │ │ ├── tree_dnd_no.png
│ │ │ │ │ │ ├── tree_dnd_yes.png
│ │ │ │ │ │ ├── tree_file.gif
│ │ │ │ │ │ ├── tree_folder.gif
│ │ │ │ │ │ ├── tree_folder_open.gif
│ │ │ │ │ │ ├── tree_loading.gif
│ │ │ │ │ │ ├── validatebox_pointer.gif
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── gray
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_collapse.png
│ │ │ │ │ │ ├── accordion_expand.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── button_a_bg.gif
│ │ │ │ │ │ ├── button_plain_hover.png
│ │ │ │ │ │ ├── button_span_bg.gif
│ │ │ │ │ │ ├── calendar_nextmonth.gif
│ │ │ │ │ │ ├── calendar_nextyear.gif
│ │ │ │ │ │ ├── calendar_prevmonth.gif
│ │ │ │ │ │ ├── calendar_prevyear.gif
│ │ │ │ │ │ ├── combo_arrow.gif
│ │ │ │ │ │ ├── datagrid_header_bg.gif
│ │ │ │ │ │ ├── datagrid_row_collapse.gif
│ │ │ │ │ │ ├── datagrid_row_expand.gif
│ │ │ │ │ │ ├── datagrid_sort_asc.gif
│ │ │ │ │ │ ├── datagrid_sort_desc.gif
│ │ │ │ │ │ ├── datagrid_title_bg.gif
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_button_down.gif
│ │ │ │ │ │ ├── layout_button_left.gif
│ │ │ │ │ │ ├── layout_button_right.gif
│ │ │ │ │ │ ├── layout_button_up.gif
│ │ │ │ │ │ ├── menu_downarrow.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── menu_rightarrow.png
│ │ │ │ │ │ ├── menu_sep.png
│ │ │ │ │ │ ├── menu_split_downarrow.png
│ │ │ │ │ │ ├── messager_error.gif
│ │ │ │ │ │ ├── messager_info.gif
│ │ │ │ │ │ ├── messager_question.gif
│ │ │ │ │ │ ├── messager_warning.gif
│ │ │ │ │ │ ├── pagination_first.gif
│ │ │ │ │ │ ├── pagination_last.gif
│ │ │ │ │ │ ├── pagination_loading.gif
│ │ │ │ │ │ ├── pagination_load.png
│ │ │ │ │ │ ├── pagination_next.gif
│ │ │ │ │ │ ├── pagination_prev.gif
│ │ │ │ │ │ ├── panel_loading.gif
│ │ │ │ │ │ ├── panel_title.gif
│ │ │ │ │ │ ├── panel_tool_collapse.gif
│ │ │ │ │ │ ├── panel_tool_expand.gif
│ │ │ │ │ │ ├── panel_tools.gif
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── spinner_arrow_down.gif
│ │ │ │ │ │ ├── spinner_arrow_up.gif
│ │ │ │ │ │ ├── tabs_close.gif
│ │ │ │ │ │ ├── tabs_enabled.gif
│ │ │ │ │ │ ├── tabs_leftarrow.png
│ │ │ │ │ │ ├── tabs_rightarrow.png
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── tree_arrows.gif
│ │ │ │ │ │ ├── tree_checkbox_0.gif
│ │ │ │ │ │ ├── tree_checkbox_1.gif
│ │ │ │ │ │ ├── tree_checkbox_2.gif
│ │ │ │ │ │ ├── tree_dnd_no.png
│ │ │ │ │ │ ├── tree_dnd_yes.png
│ │ │ │ │ │ ├── tree_file.gif
│ │ │ │ │ │ ├── tree_folder.gif
│ │ │ │ │ │ ├── tree_folder_open.gif
│ │ │ │ │ │ ├── tree_loading.gif
│ │ │ │ │ │ ├── validatebox_pointer.gif
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── icon.css
│ │ │ │ └── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_refresh.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── help.png
│ │ │ │ ├── mini_add.png
│ │ │ │ ├── mini_edit.png
│ │ │ │ ├── mini_refresh.png
│ │ │ │ ├── no.png
│ │ │ │ ├── ok.png
│ │ │ │ ├── pencil.png
│ │ │ │ ├── print.png
│ │ │ │ ├── redo.png
│ │ │ │ ├── reload.png
│ │ │ │ ├── search.png
│ │ │ │ ├── sum.png
│ │ │ │ ├── tip.png
│ │ │ │ └── undo.png
│ │ │ ├── publicJs.js
│ │ │ └── validationTextBox.js
│ │ ├── SecondGroup.csproj
│ │ ├── SecondGroup.csproj.user
│ │ ├── Views
│ │ │ ├── MainView
│ │ │ │ ├── Index.aspx
│ │ │ │ ├── Index.aspx.cs
│ │ │ │ └── Index.aspx.designer.cs
│ │ │ ├── Others
│ │ │ │ ├── Statistics.aspx
│ │ │ │ ├── Statistics.aspx.cs
│ │ │ │ ├── Statistics.aspx.designer.cs
│ │ │ │ ├── SystemTablePage.aspx
│ │ │ │ ├── SystemTablePage.aspx.cs
│ │ │ │ └── SystemTablePage.aspx.designer.cs
│ │ │ ├── RetreatTickets
│ │ │ │ ├── RetreatPackageTicketPage.aspx
│ │ │ │ ├── RetreatPackageTicketPage.aspx.cs
│ │ │ │ ├── RetreatPackageTicketPage.aspx.designer.cs
│ │ │ │ ├── RetreatRentBusTicketPage.aspx
│ │ │ │ ├── RetreatRentBusTicketPage.aspx.cs
│ │ │ │ ├── RetreatRentBusTicketPage.aspx.designer.cs
│ │ │ │ ├── RetreatTicketPage.aspx
│ │ │ │ ├── RetreatTicketPage.aspx.cs
│ │ │ │ └── RetreatTicketPage.aspx.designer.cs
│ │ │ ├── Shared
│ │ │ │ ├── Main.Master
│ │ │ │ ├── Main.Master.cs
│ │ │ │ └── Main.Master.designer.cs
│ │ │ ├── Static
│ │ │ │ ├── Error.aspx
│ │ │ │ ├── Error.aspx.cs
│ │ │ │ ├── Error.aspx.designer.cs
│ │ │ │ ├── Error.html
│ │ │ │ ├── forgetPassword.html
│ │ │ │ ├── Hellow.aspx
│ │ │ │ ├── Hellow.aspx.cs
│ │ │ │ ├── Hellow.aspx.designer.cs
│ │ │ │ └── help.html
│ │ │ ├── Tickets
│ │ │ │ ├── AddTicketAfterNormalTime.aspx
│ │ │ │ ├── AddTicketAfterNormalTime.aspx.cs
│ │ │ │ ├── AddTicketAfterNormalTime.aspx.designer.cs
│ │ │ │ ├── PackageTicketPage.aspx
│ │ │ │ ├── PackageTicketPage.aspx.cs
│ │ │ │ ├── PackageTicketPage.aspx.designer.cs
│ │ │ │ ├── RentBusPage.aspx
│ │ │ │ ├── RentBusPage.aspx.cs
│ │ │ │ ├── RentBusPage.aspx.designer.cs
│ │ │ │ ├── SetInvalidatedTicket.aspx
│ │ │ │ ├── SetInvalidatedTicket.aspx.cs
│ │ │ │ ├── SetInvalidatedTicket.aspx.designer.cs
│ │ │ │ ├── TicketPage.aspx
│ │ │ │ ├── TicketPage.aspx.cs
│ │ │ │ ├── TicketPage.aspx.designer.cs
│ │ │ │ ├── TicketPrint.aspx
│ │ │ │ ├── TicketPrint.aspx.cs
│ │ │ │ └── TicketPrint.aspx.designer.cs
│ │ │ └── Users
│ │ │ ├── PasswordUpdate.aspx
│ │ │ ├── PasswordUpdate.aspx.cs
│ │ │ ├── PasswordUpdate.aspx.designer.cs
│ │ │ ├── RoleAdd.aspx
│ │ │ ├── RoleAdd.aspx.cs
│ │ │ ├── RoleAdd.aspx.designer.cs
│ │ │ ├── RoleQuery.aspx
│ │ │ ├── RoleQuery.aspx.cs
│ │ │ ├── RoleQuery.aspx.designer.cs
│ │ │ ├── UpdateInfo.aspx
│ │ │ ├── UpdateInfo.aspx.cs
│ │ │ ├── UpdateInfo.aspx.designer.cs
│ │ │ ├── UserAdd.aspx
│ │ │ ├── UserAdd.aspx.cs
│ │ │ ├── UserAdd.aspx.designer.cs
│ │ │ ├── UserInfoAlter.aspx
│ │ │ ├── UserInfoAlter.aspx.cs
│ │ │ ├── UserInfoAlter.aspx.designer.cs
│ │ │ ├── UserLogin.aspx
│ │ │ ├── UserLogin.aspx.cs
│ │ │ ├── UserLogin.aspx.designer.cs
│ │ │ ├── UserUpdate.aspx
│ │ │ ├── UserUpdate.aspx.cs
│ │ │ └── UserUpdate.aspx.designer.cs
│ │ ├── Web.config
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ ├── SecondGroup.sln
│ └── SecondGroup.suo
├── 数据
│ ├── SecondGroups数据库脚本.sql
│ ├── 数据库
│ │ ├── SecondGroups_log.ldf
│ │ └── SecondGroups.mdf
│ ├── 数据库.rar
│ ├── 查询.sql
│ └── 部分已有数据描述.txt
└── 资料
├── Highcharts-2.2.1
│ ├── examples
│ │ ├── area-basic
│ │ │ └── index.htm
│ │ ├── area-inverted
│ │ │ └── index.htm
│ │ ├── area-missing
│ │ │ └── index.htm
│ │ ├── area-negative
│ │ │ └── index.htm
│ │ ├── areaspline
│ │ │ └── index.htm
│ │ ├── area-stacked
│ │ │ └── index.htm
│ │ ├── area-stacked-percent
│ │ │ └── index.htm
│ │ ├── bar-basic
│ │ │ └── index.htm
│ │ ├── bar-negative-stack
│ │ │ └── index.htm
│ │ ├── bar-stacked
│ │ │ └── index.htm
│ │ ├── column-basic
│ │ │ └── index.htm
│ │ ├── column-drilldown
│ │ │ └── index.htm
│ │ ├── column-negative
│ │ │ └── index.htm
│ │ ├── column-parsed
│ │ │ └── index.htm
│ │ ├── column-rotated-labels
│ │ │ └── index.htm
│ │ ├── column-stacked
│ │ │ └── index.htm
│ │ ├── column-stacked-and-grouped
│ │ │ └── index.htm
│ │ ├── column-stacked-percent
│ │ │ └── index.htm
│ │ ├── combo
│ │ │ └── index.htm
│ │ ├── combo-dual-axes
│ │ │ └── index.htm
│ │ ├── combo-multi-axes
│ │ │ └── index.htm
│ │ ├── combo-regression
│ │ │ └── index.htm
│ │ ├── dynamic-click-to-add
│ │ │ └── index.htm
│ │ ├── dynamic-master-detail
│ │ │ └── index.htm
│ │ ├── dynamic-update
│ │ │ └── index.htm
│ │ ├── line-ajax
│ │ │ ├── analytics.tsv
│ │ │ └── index.htm
│ │ ├── line-basic
│ │ │ └── index.htm
│ │ ├── line-labels
│ │ │ └── index.htm
│ │ ├── line-log-axis
│ │ │ └── index.htm
│ │ ├── line-time-series
│ │ │ └── index.htm
│ │ ├── pie-basic
│ │ │ └── index.htm
│ │ ├── pie-donut
│ │ │ └── index.htm
│ │ ├── pie-legend
│ │ │ └── index.htm
│ │ ├── scatter
│ │ │ └── index.htm
│ │ ├── spline-inverted
│ │ │ └── index.htm
│ │ ├── spline-irregular-time
│ │ │ └── index.htm
│ │ ├── spline-plot-bands
│ │ │ └── index.htm
│ │ └── spline-symbols
│ │ └── index.htm
│ ├── exporting-server
│ │ └── index.php
│ ├── graphics
│ │ ├── skies.jpg
│ │ ├── snow.png
│ │ └── sun.png
│ ├── Highcharts-2.2.1.zip
│ ├── index.htm
│ └── js
│ ├── adapters
│ │ ├── mootools-adapter.js
│ │ ├── mootools-adapter.src.js
│ │ ├── prototype-adapter.js
│ │ └── prototype-adapter.src.js
│ ├── highcharts.js
│ ├── highcharts.src.js
│ ├── modules
│ │ ├── canvas-tools.js
│ │ ├── canvas-tools.src.js
│ │ ├── exporting.js
│ │ └── exporting.src.js
│ └── themes
│ ├── dark-blue.js
│ ├── dark-green.js
│ ├── gray.js
│ ├── grid.js
│ └── skies.js
├── jquery1.7.chm
├── jquery-easyui
│ ├── changelog.txt
│ ├── demo
│ │ ├── accordion.html
│ │ ├── calendar.html
│ │ ├── combobox_data.json
│ │ ├── combobox.html
│ │ ├── combogrid.html
│ │ ├── combo.html
│ │ ├── combotree.html
│ │ ├── datagrid2.html
│ │ ├── datagrid3.html
│ │ ├── datagrid4.html
│ │ ├── datagrid5.html
│ │ ├── datagrid_data2.json
│ │ ├── datagrid_data3.json
│ │ ├── datagrid_data.json
│ │ ├── datagrid.html
│ │ ├── datebox.html
│ │ ├── datetimebox.html
│ │ ├── dialog.html
│ │ ├── draggable.html
│ │ ├── droppable1.html
│ │ ├── droppable2.html
│ │ ├── droppable.html
│ │ ├── easyloader.html
│ │ ├── form_data.json
│ │ ├── form.html
│ │ ├── layout1.html
│ │ ├── layout2.html
│ │ ├── layout.html
│ │ ├── linkbutton.html
│ │ ├── menubutton.html
│ │ ├── menu.html
│ │ ├── messager.html
│ │ ├── numberbox.html
│ │ ├── numberspinner.html
│ │ ├── pagination.html
│ │ ├── panel.html
│ │ ├── resizable.html
│ │ ├── splitbutton.html
│ │ ├── tabs_href_test.html
│ │ ├── tabs.html
│ │ ├── timespinner.html
│ │ ├── tree2.html
│ │ ├── tree_data.json
│ │ ├── treegrid_data.json
│ │ ├── treegrid.html
│ │ ├── treegrid_subdata.json
│ │ ├── tree.html
│ │ ├── validatebox.html
│ │ └── window.html
│ ├── easyloader.js
│ ├── jquery-1.4.4.min.js
│ ├── jquery-easyui-1.2.2.zip
│ ├── jquery.easyui.min.js
│ ├── licence.txt
│ ├── locale
│ │ ├── easyui-lang-af.js
│ │ ├── easyui-lang-bg.js
│ │ ├── easyui-lang-ca.js
│ │ ├── easyui-lang-cs.js
│ │ ├── easyui-lang-da.js
│ │ ├── easyui-lang-de.js
│ │ ├── easyui-lang-en.js
│ │ ├── easyui-lang-fr.js
│ │ ├── easyui-lang-nl.js
│ │ ├── easyui-lang-zh_CN.js
│ │ └── easyui-lang-zh_TW.js
│ ├── plugins
│ │ ├── jquery.accordion.js
│ │ ├── jquery.calendar.js
│ │ ├── jquery.combobox.js
│ │ ├── jquery.combogrid.js
│ │ ├── jquery.combo.js
│ │ ├── jquery.combotree.js
│ │ ├── jquery.datagrid.js
│ │ ├── jquery.datebox.js
│ │ ├── jquery.datetimebox.js
│ │ ├── jquery.dialog.js
│ │ ├── jquery.draggable.js
│ │ ├── jquery.droppable.js
│ │ ├── jquery.form.js
│ │ ├── jquery.layout.js
│ │ ├── jquery.linkbutton.js
│ │ ├── jquery.menubutton.js
│ │ ├── jquery.menu.js
│ │ ├── jquery.messager.js
│ │ ├── jquery.numberbox.js
│ │ ├── jquery.numberspinner.js
│ │ ├── jquery.pagination.js
│ │ ├── jquery.panel.js
│ │ ├── jquery.parser.js
│ │ ├── jquery.resizable.js
│ │ ├── jquery.spinner.js
│ │ ├── jquery.splitbutton.js
│ │ ├── jquery.tabs.js
│ │ ├── jquery.timespinner.js
│ │ ├── jquery.treegrid.js
│ │ ├── jquery.tree.js
│ │ ├── jquery.validatebox.js
│ │ └── jquery.window.js
│ └── themes
│ ├── default
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combobox.css
│ │ ├── combo.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── images
│ │ │ ├── accordion_collapse.png
│ │ │ ├── accordion_expand.png
│ │ │ ├── button_a_bg.gif
│ │ │ ├── button_plain_hover.png
│ │ │ ├── button_span_bg.gif
│ │ │ ├── calendar_nextmonth.gif
│ │ │ ├── calendar_nextyear.gif
│ │ │ ├── calendar_prevmonth.gif
│ │ │ ├── calendar_prevyear.gif
│ │ │ ├── combo_arrow.gif
│ │ │ ├── datagrid_header_bg.gif
│ │ │ ├── datagrid_row_collapse.gif
│ │ │ ├── datagrid_row_expand.gif
│ │ │ ├── datagrid_sort_asc.gif
│ │ │ ├── datagrid_sort_desc.gif
│ │ │ ├── datagrid_title_bg.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_button_down.gif
│ │ │ ├── layout_button_left.gif
│ │ │ ├── layout_button_right.gif
│ │ │ ├── layout_button_up.gif
│ │ │ ├── menu_downarrow.png
│ │ │ ├── menu.gif
│ │ │ ├── menu_rightarrow.png
│ │ │ ├── menu_sep.png
│ │ │ ├── menu_split_downarrow.png
│ │ │ ├── messager_error.gif
│ │ │ ├── messager_info.gif
│ │ │ ├── messager_question.gif
│ │ │ ├── messager_warning.gif
│ │ │ ├── pagination_first.gif
│ │ │ ├── pagination_last.gif
│ │ │ ├── pagination_loading.gif
│ │ │ ├── pagination_load.png
│ │ │ ├── pagination_next.gif
│ │ │ ├── pagination_prev.gif
│ │ │ ├── panel_loading.gif
│ │ │ ├── panel_title.png
│ │ │ ├── panel_tool_collapse.gif
│ │ │ ├── panel_tool_expand.gif
│ │ │ ├── panel_tools.gif
│ │ │ ├── spinner_arrow_down.gif
│ │ │ ├── spinner_arrow_up.gif
│ │ │ ├── tabs_active.png
│ │ │ ├── tabs_close.gif
│ │ │ ├── tabs_enabled.png
│ │ │ ├── tabs_leftarrow.png
│ │ │ ├── tabs_rightarrow.png
│ │ │ ├── Thumbs.db
│ │ │ ├── tree_arrows.gif
│ │ │ ├── tree_checkbox_0.gif
│ │ │ ├── tree_checkbox_1.gif
│ │ │ ├── tree_checkbox_2.gif
│ │ │ ├── tree_dnd_no.png
│ │ │ ├── tree_dnd_yes.png
│ │ │ ├── tree_file.gif
│ │ │ ├── tree_folder.gif
│ │ │ ├── tree_folder_open.gif
│ │ │ ├── tree_loading.gif
│ │ │ ├── validatebox_pointer.gif
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menubutton.css
│ │ ├── menu.css
│ │ ├── messager.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── gray
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combobox.css
│ │ ├── combo.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── images
│ │ │ ├── accordion_collapse.png
│ │ │ ├── accordion_expand.png
│ │ │ ├── button_a_bg.gif
│ │ │ ├── button_plain_hover.png
│ │ │ ├── button_span_bg.gif
│ │ │ ├── calendar_nextmonth.gif
│ │ │ ├── calendar_nextyear.gif
│ │ │ ├── calendar_prevmonth.gif
│ │ │ ├── calendar_prevyear.gif
│ │ │ ├── combo_arrow.gif
│ │ │ ├── datagrid_header_bg.gif
│ │ │ ├── datagrid_row_collapse.gif
│ │ │ ├── datagrid_row_expand.gif
│ │ │ ├── datagrid_sort_asc.gif
│ │ │ ├── datagrid_sort_desc.gif
│ │ │ ├── datagrid_title_bg.gif
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_button_down.gif
│ │ │ ├── layout_button_left.gif
│ │ │ ├── layout_button_right.gif
│ │ │ ├── layout_button_up.gif
│ │ │ ├── menu_downarrow.png
│ │ │ ├── menu.gif
│ │ │ ├── menu_rightarrow.png
│ │ │ ├── menu_sep.png
│ │ │ ├── menu_split_downarrow.png
│ │ │ ├── messager_error.gif
│ │ │ ├── messager_info.gif
│ │ │ ├── messager_question.gif
│ │ │ ├── messager_warning.gif
│ │ │ ├── pagination_first.gif
│ │ │ ├── pagination_last.gif
│ │ │ ├── pagination_loading.gif
│ │ │ ├── pagination_load.png
│ │ │ ├── pagination_next.gif
│ │ │ ├── pagination_prev.gif
│ │ │ ├── panel_loading.gif
│ │ │ ├── panel_title.gif
│ │ │ ├── panel_tool_collapse.gif
│ │ │ ├── panel_tool_expand.gif
│ │ │ ├── panel_tools.gif
│ │ │ ├── spinner_arrow_down.gif
│ │ │ ├── spinner_arrow_up.gif
│ │ │ ├── tabs_close.gif
│ │ │ ├── tabs_enabled.gif
│ │ │ ├── tabs_leftarrow.png
│ │ │ ├── tabs_rightarrow.png
│ │ │ ├── Thumbs.db
│ │ │ ├── tree_arrows.gif
│ │ │ ├── tree_checkbox_0.gif
│ │ │ ├── tree_checkbox_1.gif
│ │ │ ├── tree_checkbox_2.gif
│ │ │ ├── tree_dnd_no.png
│ │ │ ├── tree_dnd_yes.png
│ │ │ ├── tree_file.gif
│ │ │ ├── tree_folder.gif
│ │ │ ├── tree_folder_open.gif
│ │ │ ├── tree_loading.gif
│ │ │ ├── validatebox_pointer.gif
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menubutton.css
│ │ ├── menu.css
│ │ ├── messager.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── icon.css
│ └── icons
│ ├── back.png
│ ├── cancel.png
│ ├── cut.png
│ ├── edit_add.png
│ ├── edit_remove.png
│ ├── filesave.png
│ ├── help.png
│ ├── no.png
│ ├── ok.png
│ ├── pencil.png
│ ├── print.png
│ ├── redo.png
│ ├── reload.png
│ ├── search.png
│ └── undo.png
└── jqueryui-API(最完整).doc
108 directories, 902 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论