实例介绍
C#旅游管理系统
【实例截图】
【核心代码】
PY_Tour0710
└── PY_Tour
├── Admin
│ ├── Company
│ │ ├── CompanyEdit.aspx
│ │ ├── CompanyEdit.aspx.cs
│ │ ├── CompanyList.aspx
│ │ └── CompanyList.aspx.cs
│ ├── CompanyUser
│ │ ├── CompanyUserEdit.aspx
│ │ ├── CompanyUserEdit.aspx.cs
│ │ ├── CompanyUserList.aspx
│ │ └── CompanyUserList.aspx.cs
│ ├── CreateConstr.aspx
│ ├── CreateConstr.aspx.cs
│ ├── Department
│ │ ├── DepartmentEdit.aspx
│ │ ├── DepartmentEdit.aspx.cs
│ │ ├── DepartmentList.aspx
│ │ └── DepartmentList.aspx.cs
│ ├── ErrorLog
│ │ ├── 2005年
│ │ │ └── 10月
│ │ │ └── 03日
│ │ ├── 2007年
│ │ │ ├── 09月
│ │ │ │ ├── 02日
│ │ │ │ ├── 08日
│ │ │ │ ├── 10日
│ │ │ │ ├── 11日
│ │ │ │ ├── 12日
│ │ │ │ ├── 13日
│ │ │ │ ├── 14日
│ │ │ │ ├── 18日
│ │ │ │ ├── 20日
│ │ │ │ └── 21日
│ │ │ └── 10月
│ │ │ ├── 08日
│ │ │ ├── 10日
│ │ │ ├── 11日
│ │ │ ├── 16日
│ │ │ ├── 17日
│ │ │ ├── 18日
│ │ │ ├── 21日
│ │ │ ├── 22日
│ │ │ ├── 23日
│ │ │ ├── 24日
│ │ │ └── 28日
│ │ └── 2080年
│ │ └── 01月
│ │ └── 24日
│ ├── ErrorTree
│ │ ├── images
│ │ │ ├── dir.gif
│ │ │ ├── diropen.gif
│ │ │ ├── file.gif
│ │ │ ├── folder.gif
│ │ │ ├── folderopen.gif
│ │ │ ├── MenuCollapse.gif
│ │ │ ├── MenuExpand.gif
│ │ │ ├── p_1.gif
│ │ │ ├── p_2.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── title_bg_quit1.gif
│ │ │ ├── title_bg_quit.gif
│ │ │ ├── top_errorlogo.gif
│ │ │ ├── top_logo.gif
│ │ │ └── 未标题-1.psd
│ │ ├── Index.aspx
│ │ ├── Index.aspx.cs
│ │ ├── IndexDir.aspx
│ │ ├── IndexDir.aspx.cs
│ │ ├── IndexLine.aspx
│ │ ├── IndexLine.aspx.cs
│ │ ├── IndexTop.aspx
│ │ ├── IndexTop.aspx.cs
│ │ ├── Main.aspx
│ │ ├── Main.aspx.cs
│ │ └── Thumbs.db
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── IndexDir.aspx
│ ├── IndexDir.aspx.cs
│ ├── IndexLine.aspx
│ ├── IndexLine.aspx.cs
│ ├── IndexTop.aspx
│ ├── IndexTop.aspx.cs
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── Main.aspx
│ ├── Main.aspx.cs
│ ├── Manage
│ │ ├── ManagePassword.aspx
│ │ └── ManagePassword.aspx.cs
│ └── Supplier
│ ├── SupplierEdit.aspx
│ ├── SupplierEdit.aspx.cs
│ ├── SupplierList.aspx
│ ├── SupplierList.aspx.cs
│ ├── SupplierTypeList.aspx
│ └── SupplierTypeList.aspx.cs
├── App_Code
│ ├── Autorun.cs
│ ├── BindData.cs
│ ├── Converter.cs
│ ├── GetBase.cs
│ ├── IPArea.cs
│ ├── Jmail.cs
│ ├── SecurityBase.cs
│ └── WinRAR.cs
├── aspnet_client
│ └── system_web
│ ├── 1_1_4322
│ │ ├── SmartNav.htm
│ │ ├── SmartNav.js
│ │ └── WebUIValidation.js
│ └── 2_0_50727
│ └── CrystalReportWebFormViewer3
│ ├── CSs
│ │ └── default.css
│ ├── html
│ │ ├── calendarbottom.html
│ │ ├── calendar.html
│ │ ├── calendartop.html
│ │ ├── crystalexportdialog.htm
│ │ └── crystalprinthost.html
│ ├── Images
│ │ ├── ToolBar
│ │ │ ├── calendar.gif
│ │ │ ├── crlogo.gif
│ │ │ ├── exportd.gif
│ │ │ ├── export.gif
│ │ │ ├── export_over.gif
│ │ │ ├── Firstd.gif
│ │ │ ├── First.gif
│ │ │ ├── first_over.gif
│ │ │ ├── gotopaged.gif
│ │ │ ├── gotopage.gif
│ │ │ ├── gotopage_over.gif
│ │ │ ├── grouptreed.gif
│ │ │ ├── grouptree.gif
│ │ │ ├── grouptree_over.gif
│ │ │ ├── grouptreepressed.gif
│ │ │ ├── Lastd.gif
│ │ │ ├── Last.gif
│ │ │ ├── last_over.gif
│ │ │ ├── Nextd.gif
│ │ │ ├── Next.gif
│ │ │ ├── next_over.gif
│ │ │ ├── Prevd.gif
│ │ │ ├── Prev.gif
│ │ │ ├── prev_over.gif
│ │ │ ├── printd.gif
│ │ │ ├── print.gif
│ │ │ ├── print_over.gif
│ │ │ ├── refreshd.gif
│ │ │ ├── Refresh.gif
│ │ │ ├── refresh_over.gif
│ │ │ ├── searchd.gif
│ │ │ ├── Search.gif
│ │ │ ├── search_over.gif
│ │ │ ├── upd.gif
│ │ │ ├── up.gif
│ │ │ └── up_over.gif
│ │ └── Tree
│ │ ├── begindots.gif
│ │ ├── beginminus.gif
│ │ ├── beginplus.gif
│ │ ├── blankdots.gif
│ │ ├── blank.gif
│ │ ├── dots.gif
│ │ ├── lastdots.gif
│ │ ├── lastminus.gif
│ │ ├── lastplus.gif
│ │ ├── Magnify.gif
│ │ ├── Minusbox.gif
│ │ ├── minus.gif
│ │ ├── Plusbox.gif
│ │ ├── plus.gif
│ │ ├── singleminus.gif
│ │ └── singleplus.gif
│ └── JS
│ ├── calendar_param.js
│ ├── dt_param.js
│ ├── export.js
│ ├── KeyDownEvent.js
│ ├── print.js
│ ├── prompts_param.js
│ ├── strings_chs.js
│ ├── strings_cht.js
│ ├── strings_de.js
│ ├── strings_en.js
│ ├── strings_es.js
│ ├── strings_fr.js
│ ├── strings_it.js
│ ├── strings_ja.js
│ └── strings_ko.js
├── Bin
│ ├── AjaxControlToolkit.dll
│ ├── AjaxControlToolkit.dll.refresh
│ ├── AjaxControlToolkit.pdb
│ ├── AJAXExtensionsToolbox.dll
│ ├── AspNetPager.dll
│ ├── AspxBoy.Com.Env.dll
│ ├── com.dll
│ ├── com.pdb
│ ├── IPLocation.dll
│ ├── Jerry.dll
│ ├── Jerry.dll.refresh
│ ├── Jerry.pdb
│ ├── Jerry.xml
│ ├── MyJmail.dll
│ ├── MyJmail.dll.refresh
│ ├── System.Web.Extensions.Design.dll
│ └── System.Web.Extensions.dll
├── ChatRoom
│ ├── Chat.aspx
│ ├── Chat.aspx.cs
│ ├── GetMessage.aspx
│ ├── GetMessage.aspx.cs
│ ├── SendMessage.aspx
│ └── SendMessage.aspx.cs
├── CheckCode.aspx
├── CheckCode.aspx.cs
├── Company
│ ├── CompanyEdit.aspx
│ └── CompanyEdit.aspx.cs
├── CompanyUser
│ ├── CompanyUserEdit.aspx
│ ├── CompanyUserEdit.aspx.cs
│ ├── CompanyUserList.aspx
│ ├── CompanyUserList.aspx.cs
│ ├── CompanyUserPassword.aspx
│ └── CompanyUserPassword.aspx.cs
├── Css
│ └── Style.css
├── Department
│ ├── DepartmentEdit.aspx
│ ├── DepartmentEdit.aspx.cs
│ ├── DepartmentList.aspx
│ └── DepartmentList.aspx.cs
├── env.aspx
├── Error
│ ├── 404.aspx
│ ├── 404.aspx.cs
│ ├── ErrorPage.aspx
│ ├── ErrorPage.aspx.cs
│ ├── Images
│ │ └── 404.jpg
│ ├── SecurityErrorPage.aspx
│ └── SecurityErrorPage.aspx.cs
├── Finance
│ ├── AuditBySupplier.aspx
│ ├── AuditBySupplier.aspx.cs
│ ├── AuditOrderList.aspx
│ ├── AuditOrderList.aspx.cs
│ ├── CommisionCreate.aspx
│ ├── CommisionCreate.aspx.cs
│ ├── CommisionList.aspx
│ ├── CommisionList.aspx.cs
│ ├── CreateBills.aspx
│ ├── CreateBills.aspx.cs
│ ├── CreateBillsModule.aspx
│ ├── CreateBillsModule.aspx.cs
│ ├── SupplierBills
│ │ ├── 000032-071112180748000-00802.htm
│ │ └── 000033-071112180748000-00802.htm
│ ├── SupplierBillsAudit.aspx
│ ├── SupplierBillsAudit.aspx.cs
│ ├── SupplierBillsList.aspx
│ └── SupplierBillsList.aspx.cs
├── Global.asax
├── Images
│ ├── 01494313.gif
│ ├── 01494314.gif
│ ├── 0149431.gif
│ ├── 0149436.gif
│ ├── 0149439.gif
│ ├── 12.gif
│ ├── 1.jpg
│ ├── 25.gif
│ ├── 555.gif
│ ├── back_top.gif
│ ├── button_41.gif
│ ├── button_62.gif
│ ├── button_84.gif
│ ├── button_edit.gif
│ ├── check_error.gif
│ ├── check_right2.gif
│ ├── check_right.gif
│ ├── close.gif
│ ├── Company
│ │ ├── 2
│ │ │ ├── Logo.jpg
│ │ │ ├── LogoMax.jpg
│ │ │ └── Thumbs.db
│ │ └── Thumbs.db
│ ├── dell.jpg
│ ├── empty.gif
│ ├── FRAME
│ │ ├── 10.jpg
│ │ ├── 11.gif
│ │ ├── 12.gif
│ │ ├── 13.gif
│ │ ├── 14.gif
│ │ ├── 15.gif
│ │ ├── 16.gif
│ │ ├── 17.gif
│ │ ├── 19.gif
│ │ ├── 1.gif
│ │ ├── 20.gif
│ │ ├── 21.gif
│ │ ├── 22.gif
│ │ ├── 23.gif
│ │ ├── 24.gif
│ │ ├── 25.gif
│ │ ├── 26.gif
│ │ ├── 27.gif
│ │ ├── 28.gif
│ │ ├── 29.gif
│ │ ├── 2.gif
│ │ ├── 30.gif
│ │ ├── 31.gif
│ │ ├── 32.gif
│ │ ├── 33.gif
│ │ ├── 3.gif
│ │ ├── 404.jpg
│ │ ├── 4.gif
│ │ ├── 5.gif
│ │ ├── 6.gif
│ │ ├── 82.gif
│ │ ├── 8.gif
│ │ ├── 9.gif
│ │ ├── homepage.gif
│ │ ├── images2.gif
│ │ ├── images2.jpg
│ │ ├── level5.gif
│ │ ├── login_admin.gif
│ │ ├── login_b_1.gif
│ │ ├── login_b_2.gif
│ │ ├── login_b_3.gif
│ │ ├── login_b_41.gif
│ │ ├── login_b_4.gif
│ │ ├── MacClose.gif
│ │ ├── MacImg1.jpg
│ │ ├── MacImg2.jpg
│ │ ├── MacLogo.jpg
│ │ ├── MenuCollapse.gif
│ │ ├── MenuExpand.gif
│ │ ├── p_1.gif
│ │ ├── p_2.gif
│ │ ├── Square.gif
│ │ ├── tag.gif
│ │ ├── Thumbs.db
│ │ ├── title_bg_quit1.gif
│ │ ├── title_bg_quit.gif
│ │ ├── top_errorlogo.gif
│ │ └── top_logo.gif
│ ├── Go.gif
│ ├── h_l.gif
│ ├── h_m1.gif
│ ├── h_r.gif
│ ├── Icon_1_1.jpg
│ ├── Icon_1_2.jpg
│ ├── Icon1.jpg
│ ├── Icon_2_1.jpg
│ ├── Icon_2_2.jpg
│ ├── Icon_3_1.jpg
│ ├── Icon_3_2.jpg
│ ├── Icon.jpg
│ ├── images3.jpg
│ ├── images.jpg
│ ├── load.gif
│ ├── login.gif
│ ├── login_left1.gif
│ ├── login_left2.gif
│ ├── login_left3.gif
│ ├── Message
│ │ ├── Collapse.gif
│ │ ├── Exigence.gif
│ │ ├── Expand.gif
│ │ ├── MessageEdit.gif
│ │ ├── MessageType.gif
│ │ ├── NewMessage.gif
│ │ ├── SendMessage.gif
│ │ ├── SendRe.gif
│ │ ├── TableTopBackColor.gif
│ │ ├── Thumbs.db
│ │ └── ToRe.gif
│ └── Thumbs.db
├── Index.aspx
├── Index.aspx.cs
├── IndexDir.aspx
├── IndexDir.aspx.cs
├── IndexLine.aspx
├── IndexLine.aspx.cs
├── IndexTop.aspx
├── IndexTop.aspx.cs
├── Js
│ ├── HtmlEditor
│ │ ├── blankpage.htm
│ │ ├── ColorSelect.htm
│ │ ├── colorSelect.js
│ │ ├── editfunc.js
│ │ ├── FontFaceSelect.htm
│ │ ├── FontSizeSelect.htm
│ │ ├── images
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 1.gif
│ │ │ ├── 20.gif
│ │ │ ├── 2.gif
│ │ │ ├── 3.gif
│ │ │ ├── 4.gif
│ │ │ ├── 5.gif
│ │ │ ├── 6.gif
│ │ │ ├── 7.gif
│ │ │ ├── 8.gif
│ │ │ ├── 9.gif
│ │ │ ├── bg.gif
│ │ │ └── line.gif
│ │ ├── index.aspx
│ │ ├── index.aspx.cs
│ │ ├── portraitSelect.htm
│ │ ├── portraitSelect.js
│ │ ├── test.htm
│ │ └── vssver2.scc
│ ├── JerryDate
│ │ ├── calendar.js
│ │ ├── config.js
│ │ ├── JerryDate.htm
│ │ ├── lang
│ │ │ ├── en.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ ├── skin
│ │ │ ├── datePicker.gif
│ │ │ ├── default
│ │ │ │ ├── close.gif
│ │ │ │ ├── datepicker.css
│ │ │ │ ├── down.jpg
│ │ │ │ ├── left.gif
│ │ │ │ ├── navLeft.gif
│ │ │ │ ├── navRight.gif
│ │ │ │ ├── right.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ └── up.jpg
│ │ │ ├── Thumbs.db
│ │ │ ├── WdatePicker.css
│ │ │ └── whyGreen
│ │ │ ├── bg.jpg
│ │ │ ├── datepicker.css
│ │ │ ├── down.jpg
│ │ │ ├── left.gif
│ │ │ ├── navLeft.gif
│ │ │ ├── navRight.gif
│ │ │ ├── other
│ │ │ │ ├── bg2.jpg
│ │ │ │ ├── interface.jpg
│ │ │ │ └── Thumbs.db
│ │ │ ├── right.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── up.jpg
│ │ │ └── ymbg.jpg
│ │ └── WdatePicker.js
│ └── JScript.js
├── Login.aspx
├── Login.aspx.cs
├── Main.aspx
├── Main.aspx.cs
├── Message
│ ├── PrivateMessageList.aspx
│ ├── PrivateMessageList.aspx.cs
│ ├── PublicMessageDetail.aspx
│ ├── PublicMessageDetail.aspx.cs
│ ├── PublicMessageList.aspx
│ ├── PublicMessageList.aspx.cs
│ ├── SendPrivateMessage.aspx
│ ├── SendPrivateMessage.aspx.cs
│ ├── SendPublicMessage.aspx
│ └── SendPublicMessage.aspx.cs
├── SaleOrder
│ ├── CommisionList.aspx
│ ├── CommisionList.aspx.cs
│ ├── SaleOrderEdit.aspx
│ ├── SaleOrderEdit.aspx.cs
│ ├── SaleOrderList.aspx
│ ├── SaleOrderList.aspx.cs
│ ├── SaleOrderModule.aspx
│ ├── SaleOrderModule.aspx.cs
│ ├── SaleOrderView.aspx
│ └── SaleOrderView.aspx.cs
├── SaleReport
│ ├── SaleOrderForSupplier.aspx
│ ├── SaleOrderForSupplier.aspx.cs
│ ├── SaleOrderList.aspx
│ └── SaleOrderList.aspx.cs
├── Security
│ ├── SecurityForUserRole.aspx
│ ├── SecurityForUserRole.aspx.cs
│ ├── SecurityModuleEdit.aspx
│ ├── SecurityModuleEdit.aspx.cs
│ ├── SecurityRoleEdit.aspx
│ ├── SecurityRoleEdit.aspx.cs
│ ├── SecurityRoleModule.aspx
│ ├── SecurityRoleModule.aspx.cs
│ ├── SecurityRoleUser.aspx
│ ├── SecurityRoleUser.aspx.cs
│ ├── SecurityUserModule.aspx
│ ├── SecurityUserModule.aspx.cs
│ ├── test.aspx
│ └── test.aspx.cs
├── SelectForm
│ ├── SelectCompany.aspx
│ ├── SelectCompany.aspx.cs
│ ├── SelectCompanyT.aspx
│ ├── SelectCompanyT.aspx.cs
│ ├── SelectCompanyUser.aspx
│ ├── SelectCompanyUser.aspx.cs
│ ├── SelectCompanyUserT.aspx
│ ├── SelectCompanyUserT.aspx.cs
│ ├── SelectDepartment.aspx
│ ├── SelectDepartment.aspx.cs
│ ├── SelectDepartmentT.aspx
│ ├── SelectDepartmentT.aspx.cs
│ ├── SelectManage.aspx
│ ├── SelectManage.aspx.cs
│ ├── SelectManageT.aspx
│ ├── SelectManageT.aspx.cs
│ ├── SelectSupplier.aspx
│ ├── SelectSupplier.aspx.cs
│ ├── SelectSupplierT.aspx
│ └── SelectSupplierT.aspx.cs
├── Source
│ ├── QQWry.Dat
│ └── Rar.exe
├── Supplier
│ ├── SupplierEdit.aspx
│ ├── SupplierEdit.aspx.cs
│ ├── SupplierItemList.aspx
│ ├── SupplierItemList.aspx.cs
│ ├── SupplierList.aspx
│ ├── SupplierList.aspx.cs
│ ├── SupplierTypeList.aspx
│ └── SupplierTypeList.aspx.cs
├── UpDateRecord
│ ├── UpDateRecord.aspx
│ └── UpDateRecord.aspx.cs
├── Upload
│ ├── Company
│ │ ├── 1
│ │ │ └── Logo070909170920000-00175.gif
│ │ └── 2
│ │ ├── Img2070911021419000-00652.jpg
│ │ └── Logo070911021419000-00652.jpg
│ └── ErrorLog
│ ├── 2007年
│ │ ├── 10月
│ │ │ ├── 28日
│ │ │ ├── 29日
│ │ │ ├── 30日
│ │ │ └── 31日
│ │ ├── 11月
│ │ │ ├── 01日
│ │ │ ├── 04日
│ │ │ ├── 05日
│ │ │ ├── 12日
│ │ │ ├── 14日
│ │ │ ├── 15日
│ │ │ ├── 16日
│ │ │ ├── 19日
│ │ │ ├── 20日
│ │ │ ├── 21日
│ │ │ ├── 22日
│ │ │ ├── 23日
│ │ │ ├── 26日
│ │ │ ├── 27日
│ │ │ ├── 28日
│ │ │ ├── 29日
│ │ │ └── 30日
│ │ └── 12月
│ │ ├── 01日
│ │ ├── 02日
│ │ ├── 03日
│ │ ├── 04日
│ │ ├── 05日
│ │ ├── 06日
│ │ ├── 07日
│ │ ├── 08日
│ │ ├── 09日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 12日
│ │ ├── 13日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 17日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 20日
│ │ ├── 21日
│ │ ├── 23日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ ├── 29日
│ │ └── 30日
│ └── 2008年
│ ├── 01月
│ │ ├── 02日
│ │ ├── 03日
│ │ ├── 04日
│ │ ├── 06日
│ │ ├── 07日
│ │ ├── 08日
│ │ ├── 09日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 13日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 17日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 20日
│ │ ├── 21日
│ │ ├── 22日
│ │ ├── 23日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ ├── 29日
│ │ ├── 30日
│ │ └── 31日
│ ├── 02月
│ │ ├── 01日
│ │ ├── 02日
│ │ ├── 05日
│ │ ├── 06日
│ │ ├── 09日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 13日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 20日
│ │ ├── 21日
│ │ ├── 22日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ └── 29日
│ ├── 03月
│ │ ├── 01日
│ │ ├── 02日
│ │ ├── 03日
│ │ ├── 04日
│ │ ├── 05日
│ │ ├── 06日
│ │ ├── 07日
│ │ ├── 08日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 12日
│ │ ├── 13日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 17日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 20日
│ │ ├── 21日
│ │ ├── 22日
│ │ ├── 23日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ └── 31日
│ ├── 04月
│ │ ├── 01日
│ │ ├── 02日
│ │ ├── 03日
│ │ ├── 04日
│ │ ├── 07日
│ │ ├── 08日
│ │ ├── 09日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 12日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 17日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 21日
│ │ ├── 22日
│ │ ├── 23日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ ├── 29日
│ │ └── 30日
│ ├── 05月
│ │ ├── 01日
│ │ ├── 02日
│ │ ├── 03日
│ │ ├── 04日
│ │ ├── 05日
│ │ ├── 06日
│ │ ├── 07日
│ │ ├── 08日
│ │ ├── 09日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 12日
│ │ ├── 13日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 20日
│ │ ├── 21日
│ │ ├── 22日
│ │ ├── 23日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ ├── 29日
│ │ ├── 30日
│ │ └── 31日
│ ├── 06月
│ │ ├── 01日
│ │ ├── 02日
│ │ ├── 03日
│ │ ├── 04日
│ │ ├── 05日
│ │ ├── 07日
│ │ ├── 09日
│ │ ├── 10日
│ │ ├── 11日
│ │ ├── 12日
│ │ ├── 13日
│ │ ├── 14日
│ │ ├── 15日
│ │ ├── 16日
│ │ ├── 18日
│ │ ├── 19日
│ │ ├── 21日
│ │ ├── 22日
│ │ ├── 23日
│ │ ├── 24日
│ │ ├── 25日
│ │ ├── 26日
│ │ ├── 27日
│ │ ├── 28日
│ │ ├── 29日
│ │ └── 30日
│ └── 07月
│ ├── 01日
│ ├── 02日
│ ├── 03日
│ ├── 04日
│ ├── 05日
│ ├── 06日
│ ├── 07日
│ ├── 08日
│ ├── 09日
│ └── 10日
├── UserControl
│ ├── City.ascx
│ ├── City.ascx.cs
│ ├── HtmlEditor.ascx
│ ├── HtmlEditor.ascx.cs
│ ├── SecurityBar.ascx
│ ├── SecurityBar.ascx.cs
│ ├── SupplierBillsBar.ascx
│ └── SupplierBillsBar.ascx.cs
├── Web.Config
└── Web.rar
79 directories, 727 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论