实例介绍
使用.NET-ASP.NET和三层架构等技术开发网站。。。。。
【实例截图】
【核心代码】
花店系统
└── 系统
├── BLL
│ ├── bin
│ │ └── Debug
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── Models.dll
│ │ └── Models.pdb
│ ├── BLL.csproj
│ ├── CustomerBLL.cs
│ ├── FlowerBLL.cs
│ ├── FlowerPurposeBLL.cs
│ ├── MemberBLL.cs
│ ├── obj
│ │ └── Debug
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.csprojResolveAssemblyReference.cache
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── OrdersServiceBLL.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── StatesBLL.cs
│ └── UserBLL.cs
├── DAL
│ ├── bin
│ │ └── Debug
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── Models.dll
│ │ └── Models.pdb
│ ├── CustomerDAL.cs
│ ├── DAL.csproj
│ ├── FlowerDAL.cs
│ ├── FlowerPurposeDAL.cs
│ ├── MemberDAL.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DAL.csprojResolveAssemblyReference.cache
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── OrdersServiceDAL.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── StatesDAL.cs
│ └── UserDAL.cs
├── Data
│ ├── SQLQuery1.sql
│ └── 存储过程.sql
├── DBUtility
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DBUtility.dll
│ │ │ └── DBUtility.pdb
│ │ └── Release
│ │ ├── DBUtility.dll
│ │ └── DBUtility.pdb
│ ├── DBUtility.csproj
│ ├── DBUtility.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DBUtility.csproj.FileListAbsolute.txt
│ │ │ ├── DBUtility.csprojResolveAssemblyReference.cache
│ │ │ ├── DBUtility.dll
│ │ │ ├── DBUtility.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── Refactor
│ │ │ └── DBUtility.dll
│ │ └── Release
│ │ ├── DBUtility.csproj.FileListAbsolute.txt
│ │ ├── DBUtility.dll
│ │ └── DBUtility.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── SqlHelper.cs
├── jquery-ui-1.9.2.custom
│ └── jquery-ui-1.9.2.custom
│ ├── css
│ │ └── humanity
│ │ ├── images
│ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png
│ │ │ ├── ui-bg_glass_25_cb842e_1x400.png
│ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png
│ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png
│ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png
│ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png
│ │ │ ├── ui-icons_c47a23_256x240.png
│ │ │ ├── ui-icons_cb672b_256x240.png
│ │ │ ├── ui-icons_f08000_256x240.png
│ │ │ ├── ui-icons_f35f07_256x240.png
│ │ │ ├── ui-icons_ff7519_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui-1.9.2.custom.css
│ │ └── jquery-ui-1.9.2.custom.min.css
│ ├── development-bundle
│ │ ├── AUTHORS.txt
│ │ ├── demos
│ │ │ ├── accordion
│ │ │ │ ├── collapsible.html
│ │ │ │ ├── custom-icons.html
│ │ │ │ ├── default.html
│ │ │ │ ├── fillspace.html
│ │ │ │ ├── hoverintent.html
│ │ │ │ ├── index.html
│ │ │ │ ├── no-auto-height.html
│ │ │ │ └── sortable.html
│ │ │ ├── addClass
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── animate
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── autocomplete
│ │ │ │ ├── categories.html
│ │ │ │ ├── combobox.html
│ │ │ │ ├── custom-data.html
│ │ │ │ ├── default.html
│ │ │ │ ├── folding.html
│ │ │ │ ├── images
│ │ │ │ │ ├── jquery_32x32.png
│ │ │ │ │ ├── jqueryui_32x32.png
│ │ │ │ │ ├── sizzlejs_32x32.png
│ │ │ │ │ ├── transparent_1x1.png
│ │ │ │ │ └── ui-anim_basic_16x16.gif
│ │ │ │ ├── index.html
│ │ │ │ ├── london.xml
│ │ │ │ ├── maxheight.html
│ │ │ │ ├── multiple.html
│ │ │ │ ├── multiple-remote.html
│ │ │ │ ├── remote.html
│ │ │ │ ├── remote-jsonp.html
│ │ │ │ ├── remote-with-cache.html
│ │ │ │ ├── search.php
│ │ │ │ └── xml.html
│ │ │ ├── button
│ │ │ │ ├── checkbox.html
│ │ │ │ ├── default.html
│ │ │ │ ├── icons.html
│ │ │ │ ├── index.html
│ │ │ │ ├── radio.html
│ │ │ │ ├── splitbutton.html
│ │ │ │ └── toolbar.html
│ │ │ ├── datepicker
│ │ │ │ ├── alt-field.html
│ │ │ │ ├── animation.html
│ │ │ │ ├── buttonbar.html
│ │ │ │ ├── date-formats.html
│ │ │ │ ├── date-range.html
│ │ │ │ ├── default.html
│ │ │ │ ├── dropdown-month-year.html
│ │ │ │ ├── icon-trigger.html
│ │ │ │ ├── images
│ │ │ │ │ └── calendar.gif
│ │ │ │ ├── index.html
│ │ │ │ ├── inline.html
│ │ │ │ ├── localization.html
│ │ │ │ ├── min-max.html
│ │ │ │ ├── multiple-calendars.html
│ │ │ │ ├── other-months.html
│ │ │ │ └── show-week.html
│ │ │ ├── demos.css
│ │ │ ├── dialog
│ │ │ │ ├── animated.html
│ │ │ │ ├── default.html
│ │ │ │ ├── index.html
│ │ │ │ ├── modal-confirmation.html
│ │ │ │ ├── modal-form.html
│ │ │ │ ├── modal.html
│ │ │ │ └── modal-message.html
│ │ │ ├── draggable
│ │ │ │ ├── constrain-movement.html
│ │ │ │ ├── cursor-style.html
│ │ │ │ ├── default.html
│ │ │ │ ├── delay-start.html
│ │ │ │ ├── events.html
│ │ │ │ ├── handle.html
│ │ │ │ ├── index.html
│ │ │ │ ├── revert.html
│ │ │ │ ├── scroll.html
│ │ │ │ ├── snap-to.html
│ │ │ │ ├── sortable.html
│ │ │ │ └── visual-feedback.html
│ │ │ ├── droppable
│ │ │ │ ├── accepted-elements.html
│ │ │ │ ├── default.html
│ │ │ │ ├── images
│ │ │ │ │ ├── high_tatras2.jpg
│ │ │ │ │ ├── high_tatras2_min.jpg
│ │ │ │ │ ├── high_tatras3.jpg
│ │ │ │ │ ├── high_tatras3_min.jpg
│ │ │ │ │ ├── high_tatras4.jpg
│ │ │ │ │ ├── high_tatras4_min.jpg
│ │ │ │ │ ├── high_tatras.jpg
│ │ │ │ │ └── high_tatras_min.jpg
│ │ │ │ ├── index.html
│ │ │ │ ├── photo-manager.html
│ │ │ │ ├── propagation.html
│ │ │ │ ├── revert.html
│ │ │ │ ├── shopping-cart.html
│ │ │ │ └── visual-feedback.html
│ │ │ ├── effect
│ │ │ │ ├── default.html
│ │ │ │ ├── easing.html
│ │ │ │ └── index.html
│ │ │ ├── hide
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── images
│ │ │ │ ├── calendar.gif
│ │ │ │ ├── demo-config-on.gif
│ │ │ │ ├── demo-config-on-tile.gif
│ │ │ │ ├── demo-spindown-closed.gif
│ │ │ │ ├── demo-spindown-open.gif
│ │ │ │ ├── icon-docs-info.gif
│ │ │ │ └── pbar-ani.gif
│ │ │ ├── index.html
│ │ │ ├── menu
│ │ │ │ ├── default.html
│ │ │ │ ├── icons.html
│ │ │ │ └── index.html
│ │ │ ├── position
│ │ │ │ ├── cycler.html
│ │ │ │ ├── default.html
│ │ │ │ ├── images
│ │ │ │ │ ├── earth.jpg
│ │ │ │ │ ├── flight.jpg
│ │ │ │ │ └── rocket.jpg
│ │ │ │ └── index.html
│ │ │ ├── progressbar
│ │ │ │ ├── animated.html
│ │ │ │ ├── default.html
│ │ │ │ ├── images
│ │ │ │ │ └── pbar-ani.gif
│ │ │ │ ├── index.html
│ │ │ │ └── resize.html
│ │ │ ├── removeClass
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── resizable
│ │ │ │ ├── animate.html
│ │ │ │ ├── aspect-ratio.html
│ │ │ │ ├── constrain-area.html
│ │ │ │ ├── default.html
│ │ │ │ ├── delay-start.html
│ │ │ │ ├── helper.html
│ │ │ │ ├── index.html
│ │ │ │ ├── max-min.html
│ │ │ │ ├── snap-to-grid.html
│ │ │ │ ├── synchronous-resize.html
│ │ │ │ ├── textarea.html
│ │ │ │ └── visual-feedback.html
│ │ │ ├── selectable
│ │ │ │ ├── default.html
│ │ │ │ ├── display-grid.html
│ │ │ │ ├── index.html
│ │ │ │ └── serialize.html
│ │ │ ├── show
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── slider
│ │ │ │ ├── colorpicker.html
│ │ │ │ ├── default.html
│ │ │ │ ├── hotelrooms.html
│ │ │ │ ├── index.html
│ │ │ │ ├── multiple-vertical.html
│ │ │ │ ├── range.html
│ │ │ │ ├── rangemax.html
│ │ │ │ ├── rangemin.html
│ │ │ │ ├── range-vertical.html
│ │ │ │ ├── side-scroll.html
│ │ │ │ ├── slider-vertical.html
│ │ │ │ └── steps.html
│ │ │ ├── sortable
│ │ │ │ ├── connect-lists.html
│ │ │ │ ├── connect-lists-through-tabs.html
│ │ │ │ ├── default.html
│ │ │ │ ├── delay-start.html
│ │ │ │ ├── display-grid.html
│ │ │ │ ├── empty-lists.html
│ │ │ │ ├── index.html
│ │ │ │ ├── items.html
│ │ │ │ ├── placeholder.html
│ │ │ │ └── portlets.html
│ │ │ ├── spinner
│ │ │ │ ├── currency.html
│ │ │ │ ├── decimal.html
│ │ │ │ ├── default.html
│ │ │ │ ├── index.html
│ │ │ │ ├── latlong.html
│ │ │ │ ├── overflow.html
│ │ │ │ └── time.html
│ │ │ ├── switchClass
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── tabs
│ │ │ │ ├── ajax
│ │ │ │ │ ├── content1.html
│ │ │ │ │ ├── content2.html
│ │ │ │ │ ├── content3-slow.php
│ │ │ │ │ └── content4-broken.php
│ │ │ │ ├── ajax.html
│ │ │ │ ├── bottom.html
│ │ │ │ ├── collapsible.html
│ │ │ │ ├── default.html
│ │ │ │ ├── index.html
│ │ │ │ ├── manipulation.html
│ │ │ │ ├── mouseover.html
│ │ │ │ ├── sortable.html
│ │ │ │ └── vertical.html
│ │ │ ├── toggle
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── toggleClass
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ │ ├── tooltip
│ │ │ │ ├── ajax
│ │ │ │ │ ├── content1.html
│ │ │ │ │ └── content2.html
│ │ │ │ ├── custom-animation.html
│ │ │ │ ├── custom-content.html
│ │ │ │ ├── custom-style.html
│ │ │ │ ├── default.html
│ │ │ │ ├── forms.html
│ │ │ │ ├── images
│ │ │ │ │ ├── st-stephens.jpg
│ │ │ │ │ └── tower-bridge.jpg
│ │ │ │ ├── index.html
│ │ │ │ ├── tracking.html
│ │ │ │ └── video-player.html
│ │ │ └── widget
│ │ │ ├── default.html
│ │ │ └── index.html
│ │ ├── docs
│ │ │ ├── accordion.html
│ │ │ ├── autocomplete.html
│ │ │ ├── blind-effect.html
│ │ │ ├── bounce-effect.html
│ │ │ ├── button.html
│ │ │ ├── clip-effect.html
│ │ │ ├── datepicker.html
│ │ │ ├── dialog.html
│ │ │ ├── draggable.html
│ │ │ ├── drop-effect.html
│ │ │ ├── droppable.html
│ │ │ ├── explode-effect.html
│ │ │ ├── fade-effect.html
│ │ │ ├── fold-effect.html
│ │ │ ├── highlight-effect.html
│ │ │ ├── jQuery.widget.html
│ │ │ ├── menu.html
│ │ │ ├── mouse.html
│ │ │ ├── position.html
│ │ │ ├── progressbar.html
│ │ │ ├── puff-effect.html
│ │ │ ├── pulsate-effect.html
│ │ │ ├── resizable.html
│ │ │ ├── scale-effect.html
│ │ │ ├── selectable.html
│ │ │ ├── shake-effect.html
│ │ │ ├── size-effect.html
│ │ │ ├── slide-effect.html
│ │ │ ├── slider.html
│ │ │ ├── sortable.html
│ │ │ ├── spinner.html
│ │ │ ├── tabs.html
│ │ │ ├── tooltip.html
│ │ │ └── transfer-effect.html
│ │ ├── external
│ │ │ ├── globalize.culture.de-DE.js
│ │ │ ├── globalize.culture.ja-JP.js
│ │ │ ├── globalize.js
│ │ │ ├── jquery.bgiframe-2.1.2.js
│ │ │ ├── jquery.cookie.js
│ │ │ ├── jquery.metadata.js
│ │ │ ├── jquery.mousewheel.js
│ │ │ ├── jshint.js
│ │ │ ├── qunit.css
│ │ │ └── qunit.js
│ │ ├── grunt.js
│ │ ├── jquery-1.8.3.js
│ │ ├── MIT-LICENSE.txt
│ │ ├── package.json
│ │ ├── README.md
│ │ ├── 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.accordion.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ ├── jquery.ui.button.css
│ │ │ │ ├── jquery.ui.core.css
│ │ │ │ ├── jquery-ui.css
│ │ │ │ ├── jquery.ui.datepicker.css
│ │ │ │ ├── jquery.ui.dialog.css
│ │ │ │ ├── jquery.ui.menu.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.resizable.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.slider.css
│ │ │ │ ├── jquery.ui.spinner.css
│ │ │ │ ├── jquery.ui.tabs.css
│ │ │ │ ├── jquery.ui.theme.css
│ │ │ │ ├── jquery.ui.tooltip.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.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.menu.min.css
│ │ │ │ ├── jquery-ui.min.css
│ │ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ │ ├── jquery.ui.resizable.min.css
│ │ │ │ ├── jquery.ui.selectable.min.css
│ │ │ │ ├── jquery.ui.slider.min.css
│ │ │ │ ├── jquery.ui.spinner.min.css
│ │ │ │ ├── jquery.ui.tabs.min.css
│ │ │ │ ├── jquery.ui.theme.min.css
│ │ │ │ └── jquery.ui.tooltip.min.css
│ │ │ └── humanity
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png
│ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png
│ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png
│ │ │ │ ├── ui-icons_c47a23_256x240.png
│ │ │ │ ├── ui-icons_cb672b_256x240.png
│ │ │ │ ├── ui-icons_f08000_256x240.png
│ │ │ │ ├── ui-icons_f35f07_256x240.png
│ │ │ │ ├── ui-icons_ff7519_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── 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.css
│ │ │ ├── jquery.ui.datepicker.css
│ │ │ ├── jquery.ui.dialog.css
│ │ │ ├── jquery.ui.menu.css
│ │ │ ├── jquery.ui.progressbar.css
│ │ │ ├── jquery.ui.resizable.css
│ │ │ ├── jquery.ui.selectable.css
│ │ │ ├── jquery.ui.slider.css
│ │ │ ├── jquery.ui.spinner.css
│ │ │ ├── jquery.ui.tabs.css
│ │ │ ├── jquery.ui.theme.css
│ │ │ ├── jquery.ui.tooltip.css
│ │ │ └── minified
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png
│ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png
│ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png
│ │ │ │ ├── ui-icons_c47a23_256x240.png
│ │ │ │ ├── ui-icons_cb672b_256x240.png
│ │ │ │ ├── ui-icons_f08000_256x240.png
│ │ │ │ ├── ui-icons_f35f07_256x240.png
│ │ │ │ ├── ui-icons_ff7519_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── 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.menu.min.css
│ │ │ ├── jquery-ui.min.css
│ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ ├── jquery.ui.resizable.min.css
│ │ │ ├── jquery.ui.selectable.min.css
│ │ │ ├── jquery.ui.slider.min.css
│ │ │ ├── jquery.ui.spinner.min.css
│ │ │ ├── jquery.ui.tabs.min.css
│ │ │ ├── jquery.ui.theme.min.css
│ │ │ └── jquery.ui.tooltip.min.css
│ │ ├── ui
│ │ │ ├── i18n
│ │ │ │ ├── jquery.ui.datepicker-af.js
│ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js
│ │ │ │ ├── jquery.ui.datepicker-ar.js
│ │ │ │ ├── jquery.ui.datepicker-az.js
│ │ │ │ ├── jquery.ui.datepicker-bg.js
│ │ │ │ ├── jquery.ui.datepicker-bs.js
│ │ │ │ ├── jquery.ui.datepicker-ca.js
│ │ │ │ ├── jquery.ui.datepicker-cs.js
│ │ │ │ ├── jquery.ui.datepicker-cy-GB.js
│ │ │ │ ├── jquery.ui.datepicker-da.js
│ │ │ │ ├── jquery.ui.datepicker-de.js
│ │ │ │ ├── jquery.ui.datepicker-el.js
│ │ │ │ ├── jquery.ui.datepicker-en-AU.js
│ │ │ │ ├── jquery.ui.datepicker-en-GB.js
│ │ │ │ ├── jquery.ui.datepicker-en-NZ.js
│ │ │ │ ├── jquery.ui.datepicker-eo.js
│ │ │ │ ├── jquery.ui.datepicker-es.js
│ │ │ │ ├── jquery.ui.datepicker-et.js
│ │ │ │ ├── jquery.ui.datepicker-eu.js
│ │ │ │ ├── jquery.ui.datepicker-fa.js
│ │ │ │ ├── jquery.ui.datepicker-fi.js
│ │ │ │ ├── jquery.ui.datepicker-fo.js
│ │ │ │ ├── jquery.ui.datepicker-fr-CH.js
│ │ │ │ ├── jquery.ui.datepicker-fr.js
│ │ │ │ ├── jquery.ui.datepicker-gl.js
│ │ │ │ ├── jquery.ui.datepicker-he.js
│ │ │ │ ├── jquery.ui.datepicker-hi.js
│ │ │ │ ├── jquery.ui.datepicker-hr.js
│ │ │ │ ├── jquery.ui.datepicker-hu.js
│ │ │ │ ├── jquery.ui.datepicker-hy.js
│ │ │ │ ├── jquery.ui.datepicker-id.js
│ │ │ │ ├── jquery.ui.datepicker-is.js
│ │ │ │ ├── jquery.ui.datepicker-it.js
│ │ │ │ ├── jquery.ui.datepicker-ja.js
│ │ │ │ ├── jquery.ui.datepicker-ka.js
│ │ │ │ ├── jquery.ui.datepicker-kk.js
│ │ │ │ ├── jquery.ui.datepicker-km.js
│ │ │ │ ├── jquery.ui.datepicker-ko.js
│ │ │ │ ├── jquery.ui.datepicker-lb.js
│ │ │ │ ├── jquery.ui.datepicker-lt.js
│ │ │ │ ├── jquery.ui.datepicker-lv.js
│ │ │ │ ├── jquery.ui.datepicker-mk.js
│ │ │ │ ├── jquery.ui.datepicker-ml.js
│ │ │ │ ├── jquery.ui.datepicker-ms.js
│ │ │ │ ├── jquery.ui.datepicker-nl-BE.js
│ │ │ │ ├── jquery.ui.datepicker-nl.js
│ │ │ │ ├── jquery.ui.datepicker-no.js
│ │ │ │ ├── jquery.ui.datepicker-pl.js
│ │ │ │ ├── jquery.ui.datepicker-pt-BR.js
│ │ │ │ ├── jquery.ui.datepicker-pt.js
│ │ │ │ ├── jquery.ui.datepicker-rm.js
│ │ │ │ ├── jquery.ui.datepicker-ro.js
│ │ │ │ ├── jquery.ui.datepicker-ru.js
│ │ │ │ ├── jquery.ui.datepicker-sk.js
│ │ │ │ ├── jquery.ui.datepicker-sl.js
│ │ │ │ ├── jquery.ui.datepicker-sq.js
│ │ │ │ ├── jquery.ui.datepicker-sr.js
│ │ │ │ ├── jquery.ui.datepicker-sr-SR.js
│ │ │ │ ├── jquery.ui.datepicker-sv.js
│ │ │ │ ├── jquery.ui.datepicker-ta.js
│ │ │ │ ├── jquery.ui.datepicker-th.js
│ │ │ │ ├── jquery.ui.datepicker-tj.js
│ │ │ │ ├── jquery.ui.datepicker-tr.js
│ │ │ │ ├── jquery.ui.datepicker-uk.js
│ │ │ │ ├── jquery.ui.datepicker-vi.js
│ │ │ │ ├── jquery.ui.datepicker-zh-CN.js
│ │ │ │ ├── jquery.ui.datepicker-zh-HK.js
│ │ │ │ ├── jquery.ui.datepicker-zh-TW.js
│ │ │ │ └── jquery-ui-i18n.js
│ │ │ ├── jquery.ui.accordion.js
│ │ │ ├── jquery.ui.autocomplete.js
│ │ │ ├── jquery.ui.button.js
│ │ │ ├── jquery.ui.core.js
│ │ │ ├── jquery-ui.custom.js
│ │ │ ├── jquery.ui.datepicker.js
│ │ │ ├── jquery.ui.dialog.js
│ │ │ ├── jquery.ui.draggable.js
│ │ │ ├── jquery.ui.droppable.js
│ │ │ ├── jquery.ui.effect-blind.js
│ │ │ ├── jquery.ui.effect-bounce.js
│ │ │ ├── jquery.ui.effect-clip.js
│ │ │ ├── jquery.ui.effect-drop.js
│ │ │ ├── jquery.ui.effect-explode.js
│ │ │ ├── jquery.ui.effect-fade.js
│ │ │ ├── jquery.ui.effect-fold.js
│ │ │ ├── jquery.ui.effect-highlight.js
│ │ │ ├── jquery.ui.effect.js
│ │ │ ├── jquery.ui.effect-pulsate.js
│ │ │ ├── jquery.ui.effect-scale.js
│ │ │ ├── jquery.ui.effect-shake.js
│ │ │ ├── jquery.ui.effect-slide.js
│ │ │ ├── jquery.ui.effect-transfer.js
│ │ │ ├── jquery.ui.menu.js
│ │ │ ├── jquery.ui.mouse.js
│ │ │ ├── jquery.ui.position.js
│ │ │ ├── jquery.ui.progressbar.js
│ │ │ ├── jquery.ui.resizable.js
│ │ │ ├── jquery.ui.selectable.js
│ │ │ ├── jquery.ui.slider.js
│ │ │ ├── jquery.ui.sortable.js
│ │ │ ├── jquery.ui.spinner.js
│ │ │ ├── jquery.ui.tabs.js
│ │ │ ├── jquery.ui.tooltip.js
│ │ │ ├── jquery.ui.widget.js
│ │ │ └── minified
│ │ │ ├── i18n
│ │ │ │ ├── jquery.ui.datepicker-af.min.js
│ │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js
│ │ │ │ ├── jquery.ui.datepicker-ar.min.js
│ │ │ │ ├── jquery.ui.datepicker-az.min.js
│ │ │ │ ├── jquery.ui.datepicker-bg.min.js
│ │ │ │ ├── jquery.ui.datepicker-bs.min.js
│ │ │ │ ├── jquery.ui.datepicker-ca.min.js
│ │ │ │ ├── jquery.ui.datepicker-cs.min.js
│ │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js
│ │ │ │ ├── jquery.ui.datepicker-da.min.js
│ │ │ │ ├── jquery.ui.datepicker-de.min.js
│ │ │ │ ├── jquery.ui.datepicker-el.min.js
│ │ │ │ ├── jquery.ui.datepicker-en-AU.min.js
│ │ │ │ ├── jquery.ui.datepicker-en-GB.min.js
│ │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js
│ │ │ │ ├── jquery.ui.datepicker-eo.min.js
│ │ │ │ ├── jquery.ui.datepicker-es.min.js
│ │ │ │ ├── jquery.ui.datepicker-et.min.js
│ │ │ │ ├── jquery.ui.datepicker-eu.min.js
│ │ │ │ ├── jquery.ui.datepicker-fa.min.js
│ │ │ │ ├── jquery.ui.datepicker-fi.min.js
│ │ │ │ ├── jquery.ui.datepicker-fo.min.js
│ │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js
│ │ │ │ ├── jquery.ui.datepicker-fr.min.js
│ │ │ │ ├── jquery.ui.datepicker-gl.min.js
│ │ │ │ ├── jquery.ui.datepicker-he.min.js
│ │ │ │ ├── jquery.ui.datepicker-hi.min.js
│ │ │ │ ├── jquery.ui.datepicker-hr.min.js
│ │ │ │ ├── jquery.ui.datepicker-hu.min.js
│ │ │ │ ├── jquery.ui.datepicker-hy.min.js
│ │ │ │ ├── jquery.ui.datepicker-id.min.js
│ │ │ │ ├── jquery.ui.datepicker-is.min.js
│ │ │ │ ├── jquery.ui.datepicker-it.min.js
│ │ │ │ ├── jquery.ui.datepicker-ja.min.js
│ │ │ │ ├── jquery.ui.datepicker-ka.min.js
│ │ │ │ ├── jquery.ui.datepicker-kk.min.js
│ │ │ │ ├── jquery.ui.datepicker-km.min.js
│ │ │ │ ├── jquery.ui.datepicker-ko.min.js
│ │ │ │ ├── jquery.ui.datepicker-lb.min.js
│ │ │ │ ├── jquery.ui.datepicker-lt.min.js
│ │ │ │ ├── jquery.ui.datepicker-lv.min.js
│ │ │ │ ├── jquery.ui.datepicker-mk.min.js
│ │ │ │ ├── jquery.ui.datepicker-ml.min.js
│ │ │ │ ├── jquery.ui.datepicker-ms.min.js
│ │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js
│ │ │ │ ├── jquery.ui.datepicker-nl.min.js
│ │ │ │ ├── jquery.ui.datepicker-no.min.js
│ │ │ │ ├── jquery.ui.datepicker-pl.min.js
│ │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js
│ │ │ │ ├── jquery.ui.datepicker-pt.min.js
│ │ │ │ ├── jquery.ui.datepicker-rm.min.js
│ │ │ │ ├── jquery.ui.datepicker-ro.min.js
│ │ │ │ ├── jquery.ui.datepicker-ru.min.js
│ │ │ │ ├── jquery.ui.datepicker-sk.min.js
│ │ │ │ ├── jquery.ui.datepicker-sl.min.js
│ │ │ │ ├── jquery.ui.datepicker-sq.min.js
│ │ │ │ ├── jquery.ui.datepicker-sr.min.js
│ │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js
│ │ │ │ ├── jquery.ui.datepicker-sv.min.js
│ │ │ │ ├── jquery.ui.datepicker-ta.min.js
│ │ │ │ ├── jquery.ui.datepicker-th.min.js
│ │ │ │ ├── jquery.ui.datepicker-tj.min.js
│ │ │ │ ├── jquery.ui.datepicker-tr.min.js
│ │ │ │ ├── jquery.ui.datepicker-uk.min.js
│ │ │ │ ├── jquery.ui.datepicker-vi.min.js
│ │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js
│ │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js
│ │ │ │ ├── jquery.ui.datepicker-zh-TW.min.js
│ │ │ │ └── jquery-ui-i18n.min.js
│ │ │ ├── jquery.ui.accordion.min.js
│ │ │ ├── jquery.ui.autocomplete.min.js
│ │ │ ├── jquery.ui.button.min.js
│ │ │ ├── jquery.ui.core.min.js
│ │ │ ├── jquery-ui.custom.min.js
│ │ │ ├── jquery.ui.datepicker.min.js
│ │ │ ├── jquery.ui.dialog.min.js
│ │ │ ├── jquery.ui.draggable.min.js
│ │ │ ├── jquery.ui.droppable.min.js
│ │ │ ├── jquery.ui.effect-blind.min.js
│ │ │ ├── jquery.ui.effect-bounce.min.js
│ │ │ ├── jquery.ui.effect-clip.min.js
│ │ │ ├── jquery.ui.effect-drop.min.js
│ │ │ ├── jquery.ui.effect-explode.min.js
│ │ │ ├── jquery.ui.effect-fade.min.js
│ │ │ ├── jquery.ui.effect-fold.min.js
│ │ │ ├── jquery.ui.effect-highlight.min.js
│ │ │ ├── jquery.ui.effect.min.js
│ │ │ ├── jquery.ui.effect-pulsate.min.js
│ │ │ ├── jquery.ui.effect-scale.min.js
│ │ │ ├── jquery.ui.effect-shake.min.js
│ │ │ ├── jquery.ui.effect-slide.min.js
│ │ │ ├── jquery.ui.effect-transfer.min.js
│ │ │ ├── jquery.ui.menu.min.js
│ │ │ ├── jquery.ui.mouse.min.js
│ │ │ ├── jquery.ui.position.min.js
│ │ │ ├── jquery.ui.progressbar.min.js
│ │ │ ├── jquery.ui.resizable.min.js
│ │ │ ├── jquery.ui.selectable.min.js
│ │ │ ├── jquery.ui.slider.min.js
│ │ │ ├── jquery.ui.sortable.min.js
│ │ │ ├── jquery.ui.spinner.min.js
│ │ │ ├── jquery.ui.tabs.min.js
│ │ │ ├── jquery.ui.tooltip.min.js
│ │ │ └── jquery.ui.widget.min.js
│ │ ├── ui.accordion.jquery.json
│ │ ├── ui.autocomplete.jquery.json
│ │ ├── ui.button.jquery.json
│ │ ├── ui.core.jquery.json
│ │ ├── ui.datepicker.jquery.json
│ │ ├── ui.dialog.jquery.json
│ │ ├── ui.draggable.jquery.json
│ │ ├── ui.droppable.jquery.json
│ │ ├── ui.effect-blind.jquery.json
│ │ ├── ui.effect-bounce.jquery.json
│ │ ├── ui.effect-clip.jquery.json
│ │ ├── ui.effect-drop.jquery.json
│ │ ├── ui.effect-explode.jquery.json
│ │ ├── ui.effect-fade.jquery.json
│ │ ├── ui.effect-fold.jquery.json
│ │ ├── ui.effect-highlight.jquery.json
│ │ ├── ui.effect.jquery.json
│ │ ├── ui.effect-pulsate.jquery.json
│ │ ├── ui.effect-scale.jquery.json
│ │ ├── ui.effect-shake.jquery.json
│ │ ├── ui.effect-slide.jquery.json
│ │ ├── ui.effect-transfer.jquery.json
│ │ ├── ui.menu.jquery.json
│ │ ├── ui.mouse.jquery.json
│ │ ├── ui.position.jquery.json
│ │ ├── ui.progressbar.jquery.json
│ │ ├── ui.resizable.jquery.json
│ │ ├── ui.selectable.jquery.json
│ │ ├── ui.slider.jquery.json
│ │ ├── ui.sortable.jquery.json
│ │ ├── ui.spinner.jquery.json
│ │ ├── ui.tabs.jquery.json
│ │ ├── ui.tooltip.jquery.json
│ │ └── ui.widget.jquery.json
│ ├── index.html
│ └── js
│ ├── jquery-1.8.3.js
│ ├── jquery-ui-1.9.2.custom.js
│ └── jquery-ui-1.9.2.custom.min.js
├── Models
│ ├── bin
│ │ └── Debug
│ │ ├── Models.dll
│ │ └── Models.pdb
│ ├── Customer.cs
│ ├── Flower.cs
│ ├── FlowerPurpose.cs
│ ├── Member.cs
│ ├── Models.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Models.csproj.FileListAbsolute.txt
│ │ ├── Models.csprojResolveAssemblyReference.cache
│ │ ├── Models.dll
│ │ ├── Models.pdb
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── OrderDetail.cs
│ ├── Orders.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ShopCar.cs
│ ├── States.cs
│ └── Users.cs
├── QQ拼音截图未命名.png
├── Web
│ ├── {278C01DA-01B7-4CED-8A2C-A64B7CD18D3C}
│ │ ├── CodeAnalysisLog.xml
│ │ └── WebProject.lastcodeanalysissucceeded
│ ├── Admins
│ │ ├── css
│ │ │ ├── admin.css
│ │ │ ├── login.css
│ │ │ ├── pintuer.css
│ │ │ └── style.css
│ │ ├── font
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── images
│ │ │ ├── 2018010407305830586ad9c1706654e08a6e8e43a4d616e50f.jpg
│ │ │ ├── 2018010407412641266ad9c1706654e08a6e8e43a4d616e50f.jpg
│ │ │ ├── aiwrap.png
│ │ │ ├── bg.jpg
│ │ │ ├── enter.png
│ │ │ ├── grass.jpg
│ │ │ ├── login_bg.png
│ │ │ ├── passcode.jpg
│ │ │ ├── password.png
│ │ │ ├── tmbg-white.png
│ │ │ ├── user.png
│ │ │ ├── web_login_bg.jpg
│ │ │ ├── y1.jpg
│ │ │ ├── y.jpg
│ │ │ └── yy.jpg
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── jquery-1.11.3.min.js
│ │ │ ├── jquery.js
│ │ │ ├── pintuer.js
│ │ │ ├── User.js
│ │ │ └── UserLogin.ashx
│ │ ├── Login.html
│ │ ├── Management
│ │ │ ├── Customer
│ │ │ │ ├── CustomerQuery.aspx
│ │ │ │ └── CustomerQuery.aspx.cs
│ │ │ ├── Flower
│ │ │ │ ├── FlowerAdd.aspx
│ │ │ │ ├── FlowerAdd.aspx.cs
│ │ │ │ ├── FlowerList.aspx
│ │ │ │ ├── FlowerList.aspx.cs
│ │ │ │ ├── FlowerQuery.aspx
│ │ │ │ ├── FlowerQuery.aspx.cs
│ │ │ │ ├── FlowerUpdate.aspx
│ │ │ │ └── FlowerUpdate.aspx.cs
│ │ │ ├── FlowerPurpose
│ │ │ │ ├── PurposeQuery.aspx
│ │ │ │ └── PurposeQuery.aspx.cs
│ │ │ ├── Member
│ │ │ │ ├── MemberQuery.aspx
│ │ │ │ └── MemberQuery.aspx.cs
│ │ │ ├── Orders
│ │ │ │ ├── OrdersList.aspx
│ │ │ │ └── OrdersList.aspx.cs
│ │ │ └── Users
│ │ │ ├── ModifyPwd.aspx
│ │ │ ├── ModifyPwd.aspx.cs
│ │ │ ├── Personal.aspx
│ │ │ ├── Personal.aspx.cs
│ │ │ ├── UsersUpdate.aspx
│ │ │ └── UsersUpdate.aspx.cs
│ │ ├── MasterPage.master
│ │ ├── MasterPage.master.cs
│ │ ├── style
│ │ │ ├── Images
│ │ │ │ ├── 刷新.png
│ │ │ │ ├── 右箭头.png
│ │ │ │ ├── 左箭头.png
│ │ │ │ ├── 管理员.png
│ │ │ │ └── 退出.png
│ │ │ ├── js
│ │ │ │ ├── jquery.js
│ │ │ │ ├── page_common.js
│ │ │ │ └── 模板.js
│ │ │ └── Scripts
│ │ │ └── MasterPage.css
│ │ ├── 后台模板测试.aspx
│ │ └── 后台模板测试.aspx.cs
│ ├── App_Code
│ │ └── Users1.cs
│ ├── App_Themes
│ │ ├── index.css
│ │ ├── MasterPage.css
│ │ └── SkinFile
│ │ └── SkinFile.skin
│ ├── Bin
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DBUtility.dll
│ │ ├── DBUtility.pdb
│ │ ├── Models.dll
│ │ └── Models.pdb
│ ├── Default2.aspx
│ ├── Default2.aspx.cs
│ ├── FlowerSever.aspx
│ ├── FlowerSever.aspx.cs
│ ├── Global.asax
│ ├── HomePage.aspx
│ ├── HomePage.aspx.cs
│ ├── HomePage.master
│ ├── HomePage.master.cs
│ ├── Images
│ │ ├── 1.jpg
│ │ ├── 2018010407445944596ad9c1706654e08a6e8e43a4d616e50f.jpg
│ │ ├── 2018010407475647566ad9c1706654e08a6e8e43a4d616e50f.jpg
│ │ ├── 201801070717521752cd215919a5f7bfbf8b6bf7fad38ce2df.jpg
│ │ ├── 2018012204030636timg123.jpg
│ │ ├── 201803040257355735art01.png
│ │ ├── 20180304073706376art05.jpg
│ │ ├── 20180304073906396粉美人.jpg
│ │ ├── 201803040833323332粉美人.jpg
│ │ ├── 20180304100016016art04.jpg
│ │ ├── 20180304100233233art05.jpg
│ │ ├── 201803041014381438art05.jpg
│ │ ├── 201803041016441644art08.jpg
│ │ ├── 201803041017381738art08.jpg
│ │ ├── 201803041018401840art07.jpg
│ │ ├── 201803050310171017d574102862720b31be9825af6a6ab802.jpg
│ │ ├── 2.jpg
│ │ ├── 520.jpg
│ │ ├── cart.gif
│ │ ├── LOVE.jpg
│ │ ├── 为爱而生.jpg
│ │ ├── 全心全意.jpg
│ │ ├── 减号.png
│ │ ├── 删除.png
│ │ ├── 加号.png
│ │ ├── 勾.png
│ │ ├── 午后巴厘.jpg
│ │ ├── 头像1.jpg
│ │ ├── 头像.jpg
│ │ ├── 幸福微光.jpg
│ │ ├── 微信二维码.jpg
│ │ ├── 心想事成.jpg
│ │ ├── 恋爱公式.jpg
│ │ ├── 惊喜购.png
│ │ ├── 我的唯一.jpg
│ │ ├── 手机查询.png
│ │ ├── 担保交易.png
│ │ ├── 数据互通.png
│ │ ├── 欢乐时光.jpg
│ │ ├── 浪漫爱情.jpg
│ │ ├── 深情述说.jpg
│ │ ├── 温暖心情.jpg
│ │ ├── 满载幸福.jpg
│ │ ├── 爱之永恒.jpg
│ │ ├── 爱你一生.jpg
│ │ ├── 爱在心头.jpg
│ │ ├── 爱情宣言.jpg
│ │ ├── 爱的心语.jpg
│ │ ├── 甜心公主.jpg
│ │ ├── 生命花开.jpg
│ │ ├── 用户注册.png
│ │ ├── 电话.png
│ │ ├── 登录鲜花背景图.jpg
│ │ ├── 相守永恒.jpg
│ │ ├── 真品货源.png
│ │ ├── 粉美人.jpg
│ │ ├── 粉色梦境.jpg
│ │ ├── 紫霞仙子.jpg
│ │ ├── 纯真浪漫.jpg
│ │ ├── 统一价格.png
│ │ ├── 花之都.png
│ │ ├── 花舍.png
│ │ ├── 购物车.png
│ │ └── 闪电发货.png
│ ├── js
│ │ ├── FlowerType.ashx
│ │ ├── HomePage.js
│ │ ├── images
│ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png
│ │ │ ├── ui-bg_glass_25_cb842e_1x400.png
│ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png
│ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png
│ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png
│ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png
│ │ │ ├── ui-icons_c47a23_256x240.png
│ │ │ ├── ui-icons_cb672b_256x240.png
│ │ │ ├── ui-icons_f08000_256x240.png
│ │ │ ├── ui-icons_f35f07_256x240.png
│ │ │ ├── ui-icons_ff7519_256x240.png
│ │ │ └── ui-icons_ffffff_256x240.png
│ │ ├── jquery-ui-1.9.2.custom.css
│ │ ├── jquery-ui-1.9.2.custom.js
│ │ ├── ShowCarList.js
│ │ └── 首页.js
│ ├── OrderInQuiry.aspx
│ ├── OrderInQuiry.aspx.cs
│ ├── Place.aspx
│ ├── Place.aspx.cs
│ ├── PurchaseSuccess.aspx
│ ├── PurchaseSuccess.aspx.cs
│ ├── Resource.resx
│ ├── Scripts
│ │ ├── FlowerSever.css
│ │ ├── HomePage.css
│ │ ├── jquery-3.2.1.min.js
│ │ ├── OrderInQuiry.css
│ │ ├── Place.css
│ │ ├── PurchaseSuccess.css
│ │ ├── 个人中心.css
│ │ ├── 客户服务.css
│ │ ├── 注册.css
│ │ ├── 登录.css
│ │ ├── 购物车.css
│ │ └── 首页.css
│ ├── ShowCarList.aspx
│ ├── ShowCarList.aspx.cs
│ ├── Web.config
│ ├── 个人中心.aspx
│ ├── 个人中心.aspx.cs
│ ├── 客户服务.aspx
│ ├── 客户服务.aspx.cs
│ ├── 注册.aspx
│ ├── 注册.aspx.cs
│ ├── 登录.aspx
│ └── 登录.aspx.cs
├── 图片
│ ├── 1_05338404777422417_418.jpg
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 48a9172fbe3ef450a68381529742e93b.png
│ ├── 4.png
│ ├── 576bd7da637ac_1024.jpg
│ ├── C-_Users_Administrator_Desktop_未标题-1.jpg
│ ├── number_1_512px_1142206_easyicon.net.png
│ ├── QQ二维码2.jpg
│ ├── QQ二维码.jpg
│ ├── QQ图片20171029205700.jpg
│ ├── timg (1).jpg
│ ├── timg.jpg
│ ├── y.jpg
│ ├── yy.jpg
│ ├── 减号.png
│ ├── 删除.png
│ ├── 刷新.png
│ ├── 加号.png
│ ├── 勾.png
│ ├── 右箭头.png
│ ├── 图
│ │ ├── 惊喜购.png
│ │ ├── 担保交易.png
│ │ ├── 数据互通.png
│ │ ├── 真品货源.png
│ │ ├── 真心货源.png
│ │ └── 闪电发货.png
│ ├── 头像1.jpg
│ ├── 头像.jpg
│ ├── 左箭头.png
│ ├── 微信二维码.jpg
│ ├── 手机查询.png
│ ├── 晶莹花艺.psd
│ ├── 用户注册.png
│ ├── 电话.png
│ ├── 登录鲜花背景图.jpg
│ ├── 管理员.png
│ ├── 轮播1.jpg
│ ├── 轮播2.jpg
│ ├── 轮播3.jpg
│ └── 退出.png
├── 花店系统.sln
├── 花店系统.v11.suo
└── 鲜花图片
├── 婚庆鲜花
│ ├── 4bc589bfcef1beabe5362f957967a056.jpg
│ ├── 51325217c2eeb3c52e6807240d568a58.jpg
│ ├── 9010620.jpg_220x240.jpg
│ ├── 96bdf45e9d89128d524c8b8b8315f500.jpg
│ ├── 嫁给我吧.jpg
│ ├── 海洋之心.jpg
│ ├── 爱之永恒.jpg
│ └── 用心爱你.jpg
├── 手捧鲜花
│ ├── 你是我的全世界.jpg
│ ├── 午后巴厘.jpg
│ ├── 圆圆满满.jpg
│ ├── 念念不忘.jpg
│ ├── 手捧花01.jpg
│ ├── 手捧花02.jpg
│ ├── 手捧花04.jpeg
│ ├── 手捧花05.jpg
│ ├── 手捧花06.jpg
│ └── 深沉的爱恋.jpg
├── 永生花
│ ├── 1ed4e06a704bc40d4c5a13b28a6da3ea (2).jpg
│ ├── 1ed4e06a704bc40d4c5a13b28a6da3ea (3).jpeg
│ ├── 1ed4e06a704bc40d4c5a13b28a6da3ea (3).jpg
│ ├── 1ed4e06a704bc40d4c5a13b28a6da3ea (5).jpg
│ ├── 1ed4e06a704bc40d4c5a13b28a6da3ea (8).jpg
│ ├── 幸福微光.jpg
│ ├── 恋爱公式.jpg
│ ├── 温暖心情.png
│ ├── 爱的心语.jpg
│ ├── 甜心公主.jpg
│ ├── 生命花开.jpg
│ └── 粉色梦境.jpg
├── 爱情鲜花
│ ├── 09bd929510849f25b2dedf1b007ff071.jpg
│ ├── 520.jpg
│ ├── bc4445c58ee05dc4ed57ec2a28d0eea3.jpg
│ ├── e32301bd59b4c083500fb69f9e55cb1e.jpg
│ ├── LOVE 99.jpg
│ ├── LOVE.jpg
│ ├── 我只钟情你.jpg
│ └── 相守永恒.jpg
├── 生日鲜花
│ ├── 为爱而生.jpg
│ ├── 全心全意.jpg
│ ├── 我的唯一.jpg
│ ├── 欢乐时光.jpg
│ ├── 浪漫爱情.jpg
│ ├── 爱你一生.jpg
│ ├── 爱在心头.jpg
│ ├── 爱情宣言.jpg
│ ├── 紫霞仙子.jpg
│ └── 纯真浪漫.jpg
├── 礼盒鲜花
│ ├── 2108b7c1b0980b6635a5b323419bf7c6.jpg
│ ├── 2920a73e3a9f6902476f903cfc964c07.jpg
│ ├── 57a88ab458d91a289fe36d4cd9ccdbcd.jpg
│ ├── 57ff54bcdcf66ca24a325fecc52ee4e9.jpg
│ ├── 6154a4b2de92550c7981e1ff7e5f80c2.jpg
│ ├── 62d763128f1f63d8c8478ef2b965b561.png
│ ├── 69155fe205217c6c27b0e5f109453097.jpg
│ ├── cbf86d21490e041ca34fad4156967bb5.jpg
│ ├── cf8cd7b5059315bb2446acbe4f7095f4.jpg
│ ├── d27d688b09e6b6069942b3b6362c23ae.jpg
│ ├── d574102862720b31be9825af6a6ab802.jpg
│ ├── 心想事成.jpg
│ ├── 我为你着迷.jpg
│ ├── 深情述说.jpg
│ ├── 满载幸福.jpg
│ ├── 爱的守护神.jpg
│ ├── 爱的抱抱.jpg
│ ├── 真爱如初.jpg
│ └── 粉美人.jpg
└── 绿植发财树
├── 01238a88a162673405e16dc962f49463.jpg
├── 0144565da9244637bdeba3ab4045927a.jpg
├── 080d027a24d7edee36ed666e76bc2cdb.jpg
├── 12bf6950407e7f4afcd4c89a198cdc8c.jpg
├── 40877204680d499bf1c3bea908267056.jpg
├── 4a5b12f02de50cf8b4423a429af97acb.jpg
├── 6ad9c1706654e08a6e8e43a4d616e50f.jpg
├── 81d5f6ce239d7999884cb9cf6e639833.jpg
├── cd215919a5f7bfbf8b6bf7fad38ce2df.jpg
├── 发财大吉.jpg
├── 招财进宝.jpg
├── 盆满钵盈.jpg
└── 聚财发福.jpg
124 directories, 1045 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论