在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → OA系统源代码 C# 3层架构OA

OA系统源代码 C# 3层架构OA

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:11.16M
  • 下载次数:46
  • 浏览次数:161
  • 发布时间:2023-09-22
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 源代码 C# 代码 oa 架构

实例介绍

【实例简介】OA系统源代码 C# 包含3层架构 3层架构OA

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── COM.OA.BLL
│   ├── BLLGeneric.cs
│   ├── COM.OA.BLL.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── addresslistBLL.cs
│   ├── assetmanageBLL.cs
│   ├── attendanceBLL.cs
│   ├── bbsBLL.cs
│   ├── bbsrevertBLL.cs
│   ├── bin
│   │   └── Debug
│   │       ├── COM.OA.BLL.dll
│   │       ├── COM.OA.BLL.pdb
│   │       ├── COM.OA.DBFactory.dll
│   │       ├── COM.OA.DBFactory.pdb
│   │       ├── COM.OA.Entity.dll
│   │       ├── COM.OA.Entity.pdb
│   │       ├── COM.OA.IDAL.dll
│   │       └── COM.OA.IDAL.pdb
│   ├── departmentBLL.cs
│   ├── documentBLL.cs
│   ├── employeeBLL.cs
│   ├── examineBLL.cs
│   ├── filerevertBLL.cs
│   ├── filesBLL.cs
│   ├── filetypeBLL.cs
│   ├── groupsBLL.cs
│   ├── learnBLL.cs
│   ├── messageBLL.cs
│   ├── nationBLL.cs
│   ├── nativeBLL.cs
│   ├── newsBLL.cs
│   ├── obj
│   │   ├── COM.OA.BLL.csproj.FileList.txt
│   │   ├── COM.OA.BLL.csproj.FileListAbsolute.txt
│   │   └── Debug
│   │       ├── COM.OA.BLL.dll
│   │       ├── COM.OA.BLL.pdb
│   │       ├── Refactor
│   │       │   └── COM.OA.BLL.dll
│   │       ├── ResolveAssemblyReference.cache
│   │       └── TempPE
│   ├── operateBLL.cs
│   ├── popedomBLL.cs
│   ├── provinceBLL.cs
│   ├── sendwordBLL.cs
│   ├── sumuptypeBLL.cs
│   ├── timeorderBLL.cs
│   ├── usersBLL.cs
│   ├── visageBLL.cs
│   ├── worklogBLL.cs
│   └── worksumupBLL.cs
├── COM.OA.DBFactory
│   ├── COM.OA.DBFactory.csproj
│   ├── DALFactory.cs
│   ├── DataCache.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │       ├── COM.OA.DBFactory.dll
│   │       ├── COM.OA.DBFactory.pdb
│   │       ├── COM.OA.Entity.dll
│   │       ├── COM.OA.Entity.pdb
│   │       ├── COM.OA.IDAL.dll
│   │       └── COM.OA.IDAL.pdb
│   └── obj
│       ├── COM.OA.DBFactory.csproj.FileList.txt
│       ├── COM.OA.DBFactory.csproj.FileListAbsolute.txt
│       └── Debug
│           ├── COM.OA.DBFactory.dll
│           ├── COM.OA.DBFactory.pdb
│           ├── Refactor
│           │   └── COM.OA.DBFactory.dll
│           ├── ResolveAssemblyReference.cache
│           └── TempPE
├── COM.OA.Entity
│   ├── COM.OA.Entity.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── addresslist.cs
│   ├── addresslisttx.cs
│   ├── assetmanage.cs
│   ├── attendance.cs
│   ├── bbs.cs
│   ├── bbsrevert.cs
│   ├── bin
│   │   └── Debug
│   │       ├── COM.OA.Entity.dll
│   │       └── COM.OA.Entity.pdb
│   ├── department.cs
│   ├── document.cs
│   ├── employee.cs
│   ├── examine.cs
│   ├── filerevert.cs
│   ├── files.cs
│   ├── filesqs.cs
│   ├── filetype.cs
│   ├── groups.cs
│   ├── lbEmploy.cs
│   ├── learn.cs
│   ├── liandongren.cs
│   ├── liandongrenqs.cs
│   ├── message.cs
│   ├── nation.cs
│   ├── native.cs
│   ├── news.cs
│   ├── obj
│   │   ├── COM.OA.Entity.csproj.FileList.txt
│   │   ├── COM.OA.Entity.csproj.FileListAbsolute.txt
│   │   └── Debug
│   │       ├── COM.OA.Entity.dll
│   │       ├── COM.OA.Entity.pdb
│   │       ├── Refactor
│   │       │   └── COM.OA.Entity.dll
│   │       └── TempPE
│   ├── operate.cs
│   ├── popedom.cs
│   ├── province.cs
│   ├── qunzuchengyuan.cs
│   ├── sendword.cs
│   ├── sumuptype.cs
│   ├── timeorder.cs
│   ├── users.cs
│   ├── visage.cs
│   ├── wc_assetmanage.cs
│   ├── wc_employee.cs
│   ├── worklog.cs
│   ├── worklogjl.cs
│   └── worksumup.cs
├── COM.OA.IDAL
│   ├── COM.OA.IDAL.csproj
│   ├── IDALGeneric.cs
│   ├── IaddresslistDAL.cs
│   ├── IassetmanageDAL.cs
│   ├── IattendanceDAL.cs
│   ├── IbbsDAL.cs
│   ├── IbbsrevertDAL.cs
│   ├── IdepartmentDAL.cs
│   ├── IdocumentDAL.cs
│   ├── IemployeeDAL.cs
│   ├── IexamineDAL.cs
│   ├── IfilerevertDAL.cs
│   ├── IfilesDAL.cs
│   ├── IfiletypeDAL.cs
│   ├── IgroupsDAL.cs
│   ├── IlearnDAL.cs
│   ├── ImessageDAL.cs
│   ├── InationDAL.cs
│   ├── InativeDAL.cs
│   ├── InewsDAL.cs
│   ├── IoperateDAL.cs
│   ├── IpopedomDAL.cs
│   ├── IprovinceDAL.cs
│   ├── IsendwordDAL.cs
│   ├── IsumuptypeDAL.cs
│   ├── ItimeorderDAL.cs
│   ├── IusersDAL.cs
│   ├── IvisageDAL.cs
│   ├── IworklogDAL.cs
│   ├── IworksumupDAL.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │       ├── COM.OA.Entity.dll
│   │       ├── COM.OA.Entity.pdb
│   │       ├── COM.OA.IDAL.dll
│   │       └── COM.OA.IDAL.pdb
│   └── obj
│       ├── COM.OA.IDAL.csproj.FileList.txt
│       ├── COM.OA.IDAL.csproj.FileListAbsolute.txt
│       └── Debug
│           ├── COM.OA.IDAL.dll
│           ├── COM.OA.IDAL.pdb
│           ├── Refactor
│           │   └── COM.OA.IDAL.dll
│           ├── ResolveAssemblyReference.cache
│           └── TempPE
├── COM.OA.SqlServerDAL
│   ├── COM.OA.SqlServerDAL.csproj
│   ├── DALGeneric.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── SqlHelper.cs
│   ├── addresslistDAL.cs
│   ├── assetmanageDAL.cs
│   ├── attendanceDAL.cs
│   ├── bbsDAL.cs
│   ├── bbsrevertDAL.cs
│   ├── bin
│   │   └── Debug
│   │       ├── COM.OA.BLL.dll
│   │       ├── COM.OA.BLL.pdb
│   │       ├── COM.OA.DBFactory.dll
│   │       ├── COM.OA.DBFactory.pdb
│   │       ├── COM.OA.Entity.dll
│   │       ├── COM.OA.Entity.pdb
│   │       ├── COM.OA.IDAL.dll
│   │       ├── COM.OA.IDAL.pdb
│   │       ├── COM.OA.SqlServerDAL.dll
│   │       └── COM.OA.SqlServerDAL.pdb
│   ├── departmentDAL.cs
│   ├── documentDAL.cs
│   ├── employeeDAL.cs
│   ├── examineDAL.cs
│   ├── filerevertDAL.cs
│   ├── filesDAL.cs
│   ├── filetypeDAL.cs
│   ├── groupsDAL.cs
│   ├── learnDAL.cs
│   ├── messageDAL.cs
│   ├── nationDAL.cs
│   ├── nativeDAL.cs
│   ├── newsDAL.cs
│   ├── obj
│   │   ├── COM.OA.SqlServerDAL.csproj.FileList.txt
│   │   ├── COM.OA.SqlServerDAL.csproj.FileListAbsolute.txt
│   │   └── Debug
│   │       ├── COM.OA.SqlServerDAL.dll
│   │       ├── COM.OA.SqlServerDAL.pdb
│   │       ├── Refactor
│   │       │   └── COM.OA.SqlServerDAL.dll
│   │       ├── ResolveAssemblyReference.cache
│   │       └── TempPE
│   ├── operateDAL.cs
│   ├── popedomDAL.cs
│   ├── provinceDAL.cs
│   ├── sendwordDAL.cs
│   ├── sumuptypeDAL.cs
│   ├── timeorderDAL.cs
│   ├── usersDAL.cs
│   ├── visageDAL.cs
│   ├── worklogDAL.cs
│   └── worksumupDAL.cs
├── OA系统源代码 C# 3层架构OA_OA.rar
├── oaPro
│   ├── App_Code
│   │   └── GetRedirect.cs
│   ├── App_Data
│   │   ├── OA_DB.mdf
│   │   └── OA_DB_log.ldf
│   ├── Bin
│   │   ├── AjaxControlToolkit.dll
│   │   ├── App_Licenses.dll
│   │   ├── COM.OA.BLL.dll
│   │   ├── COM.OA.BLL.pdb
│   │   ├── COM.OA.DBFactory.dll
│   │   ├── COM.OA.DBFactory.pdb
│   │   ├── COM.OA.Entity.dll
│   │   ├── COM.OA.Entity.pdb
│   │   ├── COM.OA.IDAL.dll
│   │   ├── COM.OA.IDAL.pdb
│   │   ├── COM.OA.SqlServerDAL.dll
│   │   ├── COM.OA.SqlServerDAL.pdb
│   │   ├── FreeTextBox.dll
│   │   ├── FreeTextBox.dll.refresh
│   │   ├── System.Web.Extensions.Design.dll
│   │   ├── System.Web.Extensions.dll
│   │   ├── System.Web.Extensions.dll.refresh
│   │   ├── WebDate.dll
│   │   └── WebDate.dll.refresh
│   ├── Dlls
│   │   ├── AspWebControl.dll
│   │   ├── FreeTextBox.dll
│   │   ├── FreeTextBox.dll.refresh
│   │   └── WebDate.dll
│   ├── Global.asax
│   ├── Web.Config
│   ├── css
│   │   ├── Style.Css
│   │   ├── a.css
│   │   ├── input.css
│   │   ├── link.css
│   │   ├── link1.css
│   │   ├── textarea.css
│   │   └── textarea7.css
│   ├── freetextbox
│   │   └── FTBv3-1-6
│   │       ├── Bin
│   │       │   ├── FreeTextBox.dll
│   │       │   └── FreeTextBox.dll.refresh
│   │       ├── Docs
│   │       │   └── FreeTextBox.chm
│   │       ├── FTBv3-1-6.sln
│   │       ├── FTBv3-1-6.suo
│   │       ├── Framework-1.0
│   │       │   └── FreeTextBox.dll
│   │       ├── Framework-1.1
│   │       │   └── FreeTextBox.dll
│   │       ├── Framework-2.0
│   │       │   └── FreeTextBox.dll
│   │       ├── OA项目
│   │       │   ├── oaPro.sln
│   │       │   ├── oaPro.suo
│   │       │   └── oa数据库
│   │       │       ├── oaDB
│   │       │       └── 数据库NEW.txt
│   │       ├── aspnet_client
│   │       │   └── FreeTextBox
│   │       │       ├── FTB-FreeTextBox.js
│   │       │       ├── FTB-ImageGallery.js
│   │       │       ├── FTB-Pro.js
│   │       │       ├── FTB-ToolbarItems.js
│   │       │       ├── FTB-Utility.js
│   │       │       ├── Languages
│   │       │       │   ├── Languages.xml
│   │       │       │   ├── _sgbak
│   │       │       │   │   ├── Languages.xml.2005-03-17.21-30-04.5156
│   │       │       │   │   ├── Languages.xml.2005-03-22.10-39-19.7187
│   │       │       │   │   └── de-de.xml.2005-03-22.10-39-30.0156
│   │       │       │   ├── ar-SA.xml
│   │       │       │   ├── ca-CA.xml
│   │       │       │   ├── ca-ES.xml
│   │       │       │   ├── cs-CZ.xml
│   │       │       │   ├── da-DK.xml
│   │       │       │   ├── de-DE.xml
│   │       │       │   ├── el-GR.xml
│   │       │       │   ├── en-US.xml
│   │       │       │   ├── es-ES.xml
│   │       │       │   ├── fa-IR.xml
│   │       │       │   ├── fr-FR.xml
│   │       │       │   ├── he-IL.xml
│   │       │       │   ├── hu-HU.xml
│   │       │       │   ├── it-IT.xml
│   │       │       │   ├── ja-JP.xml
│   │       │       │   ├── ko-kr.xml
│   │       │       │   ├── nb-NO.xml
│   │       │       │   ├── nl-NL.xml
│   │       │       │   ├── pl-PL.xml
│   │       │       │   ├── pt-pt.xml
│   │       │       │   ├── ro-RO.xml
│   │       │       │   ├── ru-ru.xml
│   │       │       │   ├── sv-se.xml
│   │       │       │   ├── zh-TW.xml
│   │       │       │   └── zh-cn.xml
│   │       │       ├── images
│   │       │       │   ├── Picasa.ini
│   │       │       │   ├── bold.gif
│   │       │       │   ├── bulletedlist.gif
│   │       │       │   ├── buttons.gif
│   │       │       │   ├── buttons.png
│   │       │       │   ├── copy.gif
│   │       │       │   ├── createlink.gif
│   │       │       │   ├── csharp.gif
│   │       │       │   ├── css
│   │       │       │   │   ├── toolbarbutton.off.out.gif
│   │       │       │   │   ├── toolbarbutton.off.over.gif
│   │       │       │   │   ├── toolbarbutton.on.out.gif
│   │       │       │   │   ├── toolbarbutton.on.over.gif
│   │       │       │   │   └── toolbarbutton.over.gif
│   │       │       │   ├── cut.gif
│   │       │       │   ├── delete.gif
│   │       │       │   ├── deletetablecolumn.gif
│   │       │       │   ├── deletetablerow.gif
│   │       │       │   ├── editstyle.gif
│   │       │       │   ├── edittable.gif
│   │       │       │   ├── edittablecell.gif
│   │       │       │   ├── edittablerow.gif
│   │       │       │   ├── fontbackcolorpicker.gif
│   │       │       │   ├── fontforecolorpicker.gif
│   │       │       │   ├── iespellcheck.gif
│   │       │       │   ├── indent.gif
│   │       │       │   ├── insertbutton.gif
│   │       │       │   ├── insertcheckbox.gif
│   │       │       │   ├── insertdate.gif
│   │       │       │   ├── insertdiv.gif
│   │       │       │   ├── insertdropdownlist.gif
│   │       │       │   ├── insertform.gif
│   │       │       │   ├── insertimage.gif
│   │       │       │   ├── insertimagefromgallery.gif
│   │       │       │   ├── insertlistbox.gif
│   │       │       │   ├── insertradiobutton.gif
│   │       │       │   ├── insertrule.gif
│   │       │       │   ├── inserttable.gif
│   │       │       │   ├── inserttablecolumn.gif
│   │       │       │   ├── inserttablecolumnafter.gif
│   │       │       │   ├── inserttablecolumnbefore.gif
│   │       │       │   ├── inserttablerow.gif
│   │       │       │   ├── inserttablerowafter.gif
│   │       │       │   ├── inserttablerowbefore.gif
│   │       │       │   ├── inserttextarea.gif
│   │       │       │   ├── inserttextbox.gif
│   │       │       │   ├── inserttime.gif
│   │       │       │   ├── italic.gif
│   │       │       │   ├── justifycenter.gif
│   │       │       │   ├── justifyfull.gif
│   │       │       │   ├── justifyleft.gif
│   │       │       │   ├── justifyright.gif
│   │       │       │   ├── mergecells.gif
│   │       │       │   ├── mergecolumns.gif
│   │       │       │   ├── mergerows.gif
│   │       │       │   ├── misc
│   │       │       │   │   ├── Image-Normal.psd
│   │       │       │   │   ├── Picasa.ini
│   │       │       │   │   ├── ToolbarButton-Background.psd
│   │       │       │   │   ├── buttonbackgrounds.psd
│   │       │       │   │   ├── toolbarbuttoncss.off.out.gif
│   │       │       │   │   ├── toolbarbuttoncss.off.over.gif
│   │       │       │   │   ├── toolbarbuttoncss.on.out.gif
│   │       │       │   │   └── toolbarbuttoncss.on.over.gif
│   │       │       │   ├── mode.design.gif
│   │       │       │   ├── mode.html.gif
│   │       │       │   ├── netspell.gif
│   │       │       │   ├── numberedlist.gif
│   │       │       │   ├── outdent.gif
│   │       │       │   ├── paste.gif
│   │       │       │   ├── preview.gif
│   │       │       │   ├── print.gif
│   │       │       │   ├── redo.gif
│   │       │       │   ├── removeformat.gif
│   │       │       │   ├── save.gif
│   │       │       │   ├── selectall.gif
│   │       │       │   ├── separator.horizontal.gif
│   │       │       │   ├── separator.vertical.gif
│   │       │       │   ├── spacer.gif
│   │       │       │   ├── spellcheck.gif
│   │       │       │   ├── splitcells.gif
│   │       │       │   ├── strikethrough.gif
│   │       │       │   ├── subs
│   │       │       │   │   ├── bold.gif
│   │       │       │   │   ├── bulletedlist.gif
│   │       │       │   │   ├── copy.gif
│   │       │       │   │   ├── createlink.gif
│   │       │       │   │   ├── cut.gif
│   │       │       │   │   ├── delete.gif
│   │       │       │   │   ├── deletetablecolumn.gif
│   │       │       │   │   ├── deletetablerow.gif
│   │       │       │   │   ├── fontbackcolorpicker.gif
│   │       │       │   │   ├── fontforecolorpicker.gif
│   │       │       │   │   ├── indent.gif
│   │       │       │   │   ├── insertdate.gif
│   │       │       │   │   ├── insertimage.gif
│   │       │       │   │   ├── insertimagefromgallery.gif
│   │       │       │   │   ├── insertrule.gif
│   │       │       │   │   ├── inserttable.gif
│   │       │       │   │   ├── inserttablecolumn.gif
│   │       │       │   │   ├── inserttablerow.gif
│   │       │       │   │   ├── inserttime.gif
│   │       │       │   │   ├── italic.gif
│   │       │       │   │   ├── justifycenter.gif
│   │       │       │   │   ├── justifyfull.gif
│   │       │       │   │   ├── justifyleft.gif
│   │       │       │   │   ├── justifyright.gif
│   │       │       │   │   ├── mergecells.gif
│   │       │       │   │   ├── mergecolumns.gif
│   │       │       │   │   ├── numberedlist.gif
│   │       │       │   │   ├── outdent.gif
│   │       │       │   │   ├── paste.gif
│   │       │       │   │   ├── print.gif
│   │       │       │   │   ├── redo.gif
│   │       │       │   │   ├── removeformat.gif
│   │       │       │   │   ├── save.gif
│   │       │       │   │   ├── spellcheck.gif
│   │       │       │   │   ├── strikethrough.gif
│   │       │       │   │   ├── subscript.gif
│   │       │       │   │   ├── superscript.gif
│   │       │       │   │   ├── underline.gif
│   │       │       │   │   ├── undo.gif
│   │       │       │   │   ├── unlink.gif
│   │       │       │   │   ├── wordclean.gif
│   │       │       │   │   └── wordcount.gif
│   │       │       │   ├── subscript.gif
│   │       │       │   ├── superscript.gif
│   │       │       │   ├── toolbar.horizontal.background.gif
│   │       │       │   ├── toolbar.horizontal.end.gif
│   │       │       │   ├── toolbar.horizontal.start.gif
│   │       │       │   ├── toolbar.vertical.background.gif
│   │       │       │   ├── toolbar.vertical.end.gif
│   │       │       │   ├── toolbar.vertical.start.gif
│   │       │       │   ├── toolbarbutton.background.gif
│   │       │       │   ├── toolbarbutton.down.gif
│   │       │       │   ├── toolbarbuttoncss.off.out.gif
│   │       │       │   ├── toolbarbuttoncss.off.over.gif
│   │       │       │   ├── toolbarbuttoncss.on.out.gif
│   │       │       │   ├── toolbarbuttoncss.on.over.gif
│   │       │       │   ├── underline.gif
│   │       │       │   ├── undo.gif
│   │       │       │   ├── unlink.gif
│   │       │       │   ├── wordclean.gif
│   │       │       │   └── wordcount.gif
│   │       │       ├── office2000
│   │       │       │   ├── bold.gif
│   │       │       │   ├── bulletedlist.gif
│   │       │       │   ├── copy.gif
│   │       │       │   ├── createlink.gif
│   │       │       │   ├── cut.gif
│   │       │       │   ├── delete.gif
│   │       │       │   ├── deletetablecolumn.gif
│   │       │       │   ├── deletetablerow.gif
│   │       │       │   ├── editstyle.gif
│   │       │       │   ├── edittable.gif
│   │       │       │   ├── fontbackcolorpicker.gif
│   │       │       │   ├── fontforecolorpicker.gif
│   │       │       │   ├── iespellcheck.gif
│   │       │       │   ├── indent.gif
│   │       │       │   ├── insertbutton.gif
│   │       │       │   ├── insertcheckbox.gif
│   │       │       │   ├── insertdate.gif
│   │       │       │   ├── insertdiv.gif
│   │       │       │   ├── insertdropdownlist.gif
│   │       │       │   ├── insertform.gif
│   │       │       │   ├── insertimage.gif
│   │       │       │   ├── insertimagefromgallery.gif
│   │       │       │   ├── insertlistbox.gif
│   │       │       │   ├── insertradiobutton.gif
│   │       │       │   ├── insertrule.gif
│   │       │       │   ├── inserttable.gif
│   │       │       │   ├── inserttablecolumn.gif
│   │       │       │   ├── inserttablecolumnafter.gif
│   │       │       │   ├── inserttablecolumnbefore.gif
│   │       │       │   ├── inserttablerow.gif
│   │       │       │   ├── inserttablerowafter.gif
│   │       │       │   ├── inserttablerowbefore.gif
│   │       │       │   ├── inserttextarea.gif
│   │       │       │   ├── inserttextbox.gif
│   │       │       │   ├── inserttime.gif
│   │       │       │   ├── italic.gif
│   │       │       │   ├── justifycenter.gif
│   │       │       │   ├── justifyfull.gif
│   │       │       │   ├── justifyleft.gif
│   │       │       │   ├── justifyright.gif
│   │       │       │   ├── mergecells.gif
│   │       │       │   ├── mergerows.gif
│   │       │       │   ├── mode.design.gif
│   │       │       │   ├── mode.html.gif
│   │       │       │   ├── netspell.gif
│   │       │       │   ├── normal.gif
│   │       │       │   ├── normal.png
│   │       │       │   ├── numberedlist.gif
│   │       │       │   ├── outdent.gif
│   │       │       │   ├── paste.gif
│   │       │       │   ├── preview.gif
│   │       │       │   ├── print.gif
│   │       │       │   ├── redo.gif
│   │       │       │   ├── removeformat.gif
│   │       │       │   ├── save.gif
│   │       │       │   ├── selectall.gif
│   │       │       │   ├── separator.horizontal.gif
│   │       │       │   ├── spacer.gif
│   │       │       │   ├── spellcheck.gif
│   │       │       │   ├── strikethrough.gif
│   │       │       │   ├── subs
│   │       │       │   │   ├── bold.gif
│   │       │       │   │   ├── bulletedlist.gif
│   │       │       │   │   ├── copy.gif
│   │       │       │   │   ├── createlink.gif
│   │       │       │   │   ├── cut.gif
│   │       │       │   │   ├── delete.gif
│   │       │       │   │   ├── deletetablecolumn.gif
│   │       │       │   │   ├── deletetablerow.gif
│   │       │       │   │   ├── fontbackcolorpicker.gif
│   │       │       │   │   ├── fontforecolorpicker.gif
│   │       │       │   │   ├── indent.gif
│   │       │       │   │   ├── insertdate.gif
│   │       │       │   │   ├── insertimage.gif
│   │       │       │   │   ├── insertimagefromgallery.gif
│   │       │       │   │   ├── insertrule.gif
│   │       │       │   │   ├── inserttable.gif
│   │       │       │   │   ├── inserttablecolumn.gif
│   │       │       │   │   ├── inserttablerow.gif
│   │       │       │   │   ├── inserttime.gif
│   │       │       │   │   ├── italic.gif
│   │       │       │   │   ├── justifycenter.gif
│   │       │       │   │   ├── justifyfull.gif
│   │       │       │   │   ├── justifyleft.gif
│   │       │       │   │   ├── justifyright.gif
│   │       │       │   │   ├── mergecells.gif
│   │       │       │   │   ├── mergerows.gif
│   │       │       │   │   ├── numberedlist.gif
│   │       │       │   │   ├── outdent.gif
│   │       │       │   │   ├── paste.gif
│   │       │       │   │   ├── print.gif
│   │       │       │   │   ├── redo.gif
│   │       │       │   │   ├── removeformat.gif
│   │       │       │   │   ├── save.gif
│   │       │       │   │   ├── spellcheck.gif
│   │       │       │   │   ├── strikethrough.gif
│   │       │       │   │   ├── subscript.gif
│   │       │       │   │   ├── superscript.gif
│   │       │       │   │   ├── underline.gif
│   │       │       │   │   ├── undo.gif
│   │       │       │   │   ├── unlink.gif
│   │       │       │   │   ├── wordclean.gif
│   │       │       │   │   └── wordcount.gif
│   │       │       │   ├── subscript.gif
│   │       │       │   ├── superscript.gif
│   │       │       │   ├── toolbar.horizontal.end.gif
│   │       │       │   ├── toolbar.horizontal.start.gif
│   │       │       │   ├── underline.gif
│   │       │       │   ├── undo.gif
│   │       │       │   ├── unlink.gif
│   │       │       │   ├── wordclean.gif
│   │       │       │   └── wordcount.gif
│   │       │       ├── officeMac
│   │       │       │   ├── Picasa.ini
│   │       │       │   ├── Untitled-2.png
│   │       │       │   ├── backcolorpicker.gif
│   │       │       │   ├── bold.gif
│   │       │       │   ├── bulletedlist.gif
│   │       │       │   ├── copy.gif
│   │       │       │   ├── createlink.gif
│   │       │       │   ├── cut.gif
│   │       │       │   ├── delete.gif
│   │       │       │   ├── deletetablecolumn.gif
│   │       │       │   ├── deletetablerow.gif
│   │       │       │   ├── editstyle.gif
│   │       │       │   ├── edittable.gif
│   │       │       │   ├── fontbackcolorpicker.gif
│   │       │       │   ├── fontforecolorpicker.gif
│   │       │       │   ├── forecolorpicker.gif
│   │       │       │   ├── iespellcheck.gif
│   │       │       │   ├── indent.gif
│   │       │       │   ├── insertbutton.gif
│   │       │       │   ├── insertcheckbox.gif
│   │       │       │   ├── insertdate.gif
│   │       │       │   ├── insertdiv.gif
│   │       │       │   ├── insertdropdownlist.gif
│   │       │       │   ├── insertform.gif
│   │       │       │   ├── insertimage.gif
│   │       │       │   ├── insertimagefromgallery.gif
│   │       │       │   ├── insertradiobutton.gif
│   │       │       │   ├── insertrule.gif
│   │       │       │   ├── inserttable.gif
│   │       │       │   ├── inserttablecolumnafter.gif
│   │       │       │   ├── inserttablecolumnbefore.gif
│   │       │       │   ├── inserttablerowafter.gif
│   │       │       │   ├── inserttablerowbefore.gif
│   │       │       │   ├── inserttextarea.gif
│   │       │       │   ├── inserttextbox.gif
│   │       │       │   ├── inserttime.gif
│   │       │       │   ├── italic.gif
│   │       │       │   ├── justifycenter.gif
│   │       │       │   ├── justifyfull.gif
│   │       │       │   ├── justifyleft.gif
│   │       │       │   ├── justifyright.gif
│   │       │       │   ├── mode.design.gif
│   │       │       │   ├── mode.html.gif
│   │       │       │   ├── netspell.gif
│   │       │       │   ├── new.gif
│   │       │       │   ├── numberedlist.gif
│   │       │       │   ├── outdent.gif
│   │       │       │   ├── paste.gif
│   │       │       │   ├── paste2.gif
│   │       │       │   ├── preview.gif
│   │       │       │   ├── print.gif
│   │       │       │   ├── redo.gif
│   │       │       │   ├── removeformat.gif
│   │       │       │   ├── save.gif
│   │       │       │   ├── selectall.gif
│   │       │       │   ├── separator.horizontal.gif
│   │       │       │   ├── strikethrough.gif
│   │       │       │   ├── subscript.gif
│   │       │       │   ├── superscript.gif
│   │       │       │   ├── toolbar.horizontal.background.gif
│   │       │       │   ├── toolbar.horizontal.end.gif
│   │       │       │   ├── toolbar.horizontal.end2.gif
│   │       │       │   ├── toolbar.horizontal.start.gif
│   │       │       │   ├── toolbarbuttoncss.off.normal.gif
│   │       │       │   ├── toolbarbuttoncss.off.over.gif
│   │       │       │   ├── toolbarbuttoncss.on.normal.gif
│   │       │       │   ├── toolbarbuttoncss.on.over.gif
│   │       │       │   ├── underline.gif
│   │       │       │   ├── undo.gif
│   │       │       │   ├── unlink.gif
│   │       │       │   └── wordclean.gif
│   │       │       ├── officeXP
│   │       │       │   ├── bold.gif
│   │       │       │   ├── bold.over.gif
│   │       │       │   ├── bulletedlist.gif
│   │       │       │   ├── bulletedlist.over.gif
│   │       │       │   ├── copy.gif
│   │       │       │   ├── copy.over.gif
│   │       │       │   ├── createlink.gif
│   │       │       │   ├── createlink.over.gif
│   │       │       │   ├── cut.gif
│   │       │       │   ├── cut.over.gif
│   │       │       │   ├── delete.gif
│   │       │       │   ├── delete.over.gif
│   │       │       │   ├── deletetablecolumn.gif
│   │       │       │   ├── deletetablecolumn.over.gif
│   │       │       │   ├── deletetablerow.gif
│   │       │       │   ├── deletetablerow.over.gif
│   │       │       │   ├── editstyle.gif
│   │       │       │   ├── edittable.gif
│   │       │       │   ├── fontbackcolorpicker.gif
│   │       │       │   ├── fontbackcolorpicker.over.gif
│   │       │       │   ├── fontforecolorpicker.gif
│   │       │       │   ├── fontforecolorpicker.over.gif
│   │       │       │   ├── forumColumnBackground.gif
│   │       │       │   ├── iespellcheck.gif
│   │       │       │   ├── iespellcheck.over.gif
│   │       │       │   ├── indent.gif
│   │       │       │   ├── indent.over.gif
│   │       │       │   ├── insertbutton.gif
│   │       │       │   ├── insertcheckbox.gif
│   │       │       │   ├── insertdate.gif
│   │       │       │   ├── insertdate.over.gif
│   │       │       │   ├── insertdiv.gif
│   │       │       │   ├── insertdropdownlist.gif
│   │       │       │   ├── insertform.gif
│   │       │       │   ├── insertimage.gif
│   │       │       │   ├── insertimage.over.gif
│   │       │       │   ├── insertimagefromgallery.gif
│   │       │       │   ├── insertimagefromgallery.over.gif
│   │       │       │   ├── insertlistbox.gif
│   │       │       │   ├── insertradiobutton.gif
│   │       │       │   ├── insertrule.gif
│   │       │       │   ├── insertrule.over.gif
│   │       │       │   ├── inserttable.gif
│   │       │       │   ├── inserttable.over.gif
│   │       │       │   ├── inserttablecolumn.gif
│   │       │       │   ├── inserttablecolumn.over.gif
│   │       │       │   ├── inserttablecolumnafter.gif
│   │       │       │   ├── inserttablecolumnafter.over.gif
│   │       │       │   ├── inserttablecolumnbefore.gif
│   │       │       │   ├── inserttablecolumnbefore.over.gif
│   │       │       │   ├── inserttablerow.gif
│   │       │       │   ├── inserttablerow.over.gif
│   │       │       │   ├── inserttablerowafter.gif
│   │       │       │   ├── inserttablerowafter.over.gif
│   │       │       │   ├── inserttablerowbefore.gif
│   │       │       │   ├── inserttablerowbefore.over.gif
│   │       │       │   ├── inserttextarea.gif
│   │       │       │   ├── inserttextbox.gif
│   │       │       │   ├── inserttime.gif
│   │       │       │   ├── inserttime.over.gif
│   │       │       │   ├── italic.gif
│   │       │       │   ├── italic.over.gif
│   │       │       │   ├── justifycenter.gif
│   │       │       │   ├── justifycenter.over.gif
│   │       │       │   ├── justifyfull.gif
│   │       │       │   ├── justifyfull.over.gif
│   │       │       │   ├── justifyleft.gif
│   │       │       │   ├── justifyleft.over.gif
│   │       │       │   ├── justifyright.gif
│   │       │       │   ├── justifyright.over.gif
│   │       │       │   ├── mergecells.gif
│   │       │       │   ├── mergecells.over.gif
│   │       │       │   ├── mergerows.gif
│   │       │       │   ├── mergerows.over.gif
│   │       │       │   ├── mode.design.gif
│   │       │       │   ├── mode.html.gif
│   │       │       │   ├── netspell.gif
│   │       │       │   ├── netspell.over.gif
│   │       │       │   ├── normal.gif
│   │       │       │   ├── normal.png
│   │       │       │   ├── numberedlist.gif
│   │       │       │   ├── numberedlist.over.gif
│   │       │       │   ├── old
│   │       │       │   │   ├── bgcolor.gif
│   │       │       │   │   ├── bold.gif
│   │       │       │   │   ├── bold.over.gif
│   │       │       │   │   ├── borders.gif
│   │       │       │   │   ├── bulletedlist.gif
│   │       │       │   │   ├── bulletedlist.over.gif
│   │       │       │   │   ├── changecase.gif
│   │       │       │   │   ├── changecase.over.gif
│   │       │       │   │   ├── copy.gif
│   │       │       │   │   ├── copy.over.gif
│   │       │       │   │   ├── createlink.gif
│   │       │       │   │   ├── createlink.over.gif
│   │       │       │   │   ├── cut.gif
│   │       │       │   │   ├── cut.over.gif
│   │       │       │   │   ├── delete.gif
│   │       │       │   │   ├── delete.over.gif
│   │       │       │   │   ├── deletetablecolumn.gif
│   │       │       │   │   ├── deletetablecolumn.over.gif
│   │       │       │   │   ├── deletetablerow.gif
│   │       │       │   │   ├── deletetablerow.over.gif
│   │       │       │   │   ├── details.gif
│   │       │       │   │   ├── find.gif
│   │       │       │   │   ├── find.over.gif
│   │       │       │   │   ├── fontbackcolorpicker.gif
│   │       │       │   │   ├── fontbackcolorpicker.over.gif
│   │       │       │   │   ├── indent.over.gif
│   │       │       │   │   ├── insertdate.gif
│   │       │       │   │   ├── insertdate.over.gif
│   │       │       │   │   ├── insertemail.gif
│   │       │       │   │   ├── insertemail.over.gif
│   │       │       │   │   ├── insertimage.gif
│   │       │       │   │   ├── insertimage.over.gif
│   │       │       │   │   ├── insertimagefromgallery.gif
│   │       │       │   │   ├── insertimagefromgallery.over.gif
│   │       │       │   │   ├── insertrule.gif
│   │       │       │   │   ├── insertrule.over.gif
│   │       │       │   │   ├── inserttable.gif
│   │       │       │   │   ├── inserttable.over.gif
│   │       │       │   │   ├── inserttablecolumn.gif
│   │       │       │   │   ├── inserttablecolumn.over.gif
│   │       │       │   │   ├── inserttablerow.gif
│   │       │       │   │   ├── inserttablerow.over.gif
│   │       │       │   │   ├── inserttime.gif
│   │       │       │   │   ├── inserttime.over.gif
│   │       │       │   │   ├── italic.gif
│   │       │       │   │   ├── italic.over.gif
│   │       │       │   │   ├── justifycenter.gif
│   │       │       │   │   ├── justifycenter.over.gif
│   │       │       │   │   ├── justifyfull.gif
│   │       │       │   │   ├── justifyfull.over.gif
│   │       │       │   │   ├── justifyleft.gif
│   │       │       │   │   ├── justifyleft.over.gif
│   │       │       │   │   ├── justifyright.gif
│   │       │       │   │   ├── justifyright.over.gif
│   │       │       │   │   ├── numberedlist.gif
│   │       │       │   │   ├── numberedlist.over.gif
│   │       │       │   │   ├── outdent.gif
│   │       │       │   │   ├── outdent.over.gif
│   │       │       │   │   ├── paste.gif
│   │       │       │   │   ├── paste.over.gif
│   │       │       │   │   ├── print.gif
│   │       │       │   │   ├── print.over.gif
│   │       │       │   │   ├── redo.gif
│   │       │       │   │   ├── redo.over.gif
│   │       │       │   │   ├── removeformat.gif
│   │       │       │   │   ├── removeformat.over.gif
│   │       │       │   │   ├── save.gif
│   │       │       │   │   ├── save.over.gif
│   │       │       │   │   ├── spellcheck.gif
│   │       │       │   │   ├── spellcheck.over.gif
│   │       │       │   │   ├── strikethrough.gif
│   │       │       │   │   ├── strikethrough.over.gif
│   │       │       │   │   ├── subscript.gif
│   │       │       │   │   ├── subscript.over.gif
│   │       │       │   │   ├── superscript.gif
│   │       │       │   │   ├── superscript.over.gif
│   │       │       │   │   ├── toggleborders.gif
│   │       │       │   │   ├── toggledetails.gif
│   │       │       │   │   ├── toggledetails.over.gif
│   │       │       │   │   ├── underline.gif
│   │       │       │   │   ├── underline.over.gif
│   │       │       │   │   ├── undo.gif
│   │       │       │   │   ├── undo.over.gif
│   │       │       │   │   ├── unlink.gif
│   │       │       │   │   ├── unlink.over.gif
│   │       │       │   │   ├── verse.gif
│   │       │       │   │   ├── verse.over.gif
│   │       │       │   │   ├── wordcount.gif
│   │       │       │   │   └── wordcount.over.gif
│   │       │       │   ├── outdent.gif
│   │       │       │   ├── outdent.over.gif
│   │       │       │   ├── paste.gif
│   │       │       │   ├── paste.over.gif
│   │       │       │   ├── preview.gif
│   │       │       │   ├── print.gif
│   │       │       │   ├── print.over.gif
│   │       │       │   ├── redo.gif
│   │       │       │   ├── redo.over.gif
│   │       │       │   ├── removeformat.gif
│   │       │       │   ├── removeformat.over.gif
│   │       │       │   ├── save.gif
│   │       │       │   ├── save.over.gif
│   │       │       │   ├── selectall.gif
│   │       │       │   ├── separator.horizontal.gif
│   │       │       │   ├── spacer.gif
│   │       │       │   ├── spellcheck.gif
│   │       │       │   ├── spellcheck.over.gif
│   │       │       │   ├── strikethrough.gif
│   │       │       │   ├── strikethrough.over.gif
│   │       │       │   ├── subs
│   │       │       │   │   ├── bold.gif
│   │       │       │   │   ├── bold.over.gif
│   │       │       │   │   ├── bulletedlist.gif
│   │       │       │   │   ├── bulletedlist.over.gif
│   │       │       │   │   ├── copy.gif
│   │       │       │   │   ├── copy.over.gif
│   │       │       │   │   ├── createlink.gif
│   │       │       │   │   ├── createlink.over.gif
│   │       │       │   │   ├── cut.gif
│   │       │       │   │   ├── cut.over.gif
│   │       │       │   │   ├── delete.gif
│   │       │       │   │   ├── delete.over.gif
│   │       │       │   │   ├── deletetablecolumn.gif
│   │       │       │   │   ├── deletetablecolumn.over.gif
│   │       │       │   │   ├── deletetablerow.gif
│   │       │       │   │   ├── deletetablerow.over.gif
│   │       │       │   │   ├── fontbackcolorpicker.gif
│   │       │       │   │   ├── fontbackcolorpicker.over.gif
│   │       │       │   │   ├── fontforecolorpicker.gif
│   │       │       │   │   ├── fontforecolorpicker.over.gif
│   │       │       │   │   ├── indent.gif
│   │       │       │   │   ├── indent.over.gif
│   │       │       │   │   ├── insertdate.gif
│   │       │       │   │   ├── insertdate.over.gif
│   │       │       │   │   ├── insertimage.gif
│   │       │       │   │   ├── insertimage.over.gif
│   │       │       │   │   ├── insertimagefromgallery.gif
│   │       │       │   │   ├── insertimagefromgallery.over.gif
│   │       │       │   │   ├── insertrule.gif
│   │       │       │   │   ├── insertrule.over.gif
│   │       │       │   │   ├── inserttable.gif
│   │       │       │   │   ├── inserttable.over.gif
│   │       │       │   │   ├── inserttablecolumn.gif
│   │       │       │   │   ├── inserttablecolumn.over.gif
│   │       │       │   │   ├── inserttablerow.gif
│   │       │       │   │   ├── inserttablerow.over.gif
│   │       │       │   │   ├── inserttime.gif
│   │       │       │   │   ├── inserttime.over.gif
│   │       │       │   │   ├── italic.gif
│   │       │       │   │   ├── italic.over.gif
│   │       │       │   │   ├── justifycenter.gif
│   │       │       │   │   ├── justifycenter.over.gif
│   │       │       │   │   ├── justifyfull.gif
│   │       │       │   │   ├── justifyfull.over.gif
│   │       │       │   │   ├── justifyleft.gif
│   │       │       │   │   ├── justifyleft.over.gif
│   │       │       │   │   ├── justifyright.gif
│   │       │       │   │   ├── justifyright.over.gif
│   │       │       │   │   ├── mergecells.gif
│   │       │       │   │   ├── mergecells.over.gif
│   │       │       │   │   ├── mergerows.gif
│   │       │       │   │   ├── mergerows.over.gif
│   │       │       │   │   ├── numberedlist.gif
│   │       │       │   │   ├── numberedlist.over.gif
│   │       │       │   │   ├── outdent.gif
│   │       │       │   │   ├── outdent.over.gif
│   │       │       │   │   ├── paste.gif
│   │       │       │   │   ├── paste.over.gif
│   │       │       │   │   ├── print.gif
│   │       │       │   │   ├── print.over.gif
│   │       │       │   │   ├── redo.gif
│   │       │       │   │   ├── redo.over.gif
│   │       │       │   │   ├── removeformat.gif
│   │       │       │   │   ├── removeformat.over.gif
│   │       │       │   │   ├── save.gif
│   │       │       │   │   ├── save.over.gif
│   │       │       │   │   ├── spellcheck.gif
│   │       │       │   │   ├── spellcheck.over.gif
│   │       │       │   │   ├── strikethrough.gif
│   │       │       │   │   ├── strikethrough.over.gif
│   │       │       │   │   ├── subscript.gif
│   │       │       │   │   ├── subscript.over.gif
│   │       │       │   │   ├── superscript.gif
│   │       │       │   │   ├── superscript.over.gif
│   │       │       │   │   ├── underline.gif
│   │       │       │   │   ├── underline.over.gif
│   │       │       │   │   ├── undo.gif
│   │       │       │   │   ├── undo.over.gif
│   │       │       │   │   ├── unlink.gif
│   │       │       │   │   ├── unlink.over.gif
│   │       │       │   │   ├── wordclean.gif
│   │       │       │   │   ├── wordclean.over.gif
│   │       │       │   │   ├── wordcount.gif
│   │       │       │   │   └── wordcount.over.gif
│   │       │       │   ├── subscript.gif
│   │       │       │   ├── subscript.over.gif
│   │       │       │   ├── superscript.gif
│   │       │       │   ├── superscript.over.gif
│   │       │       │   ├── toolbar.horizontal.end.gif
│   │       │       │   ├── toolbar.horizontal.start.gif
│   │       │       │   ├── underline.gif
│   │       │       │   ├── underline.over.gif
│   │       │       │   ├── undo.gif
│   │       │       │   ├── undo.over.gif
│   │       │       │   ├── unlink.gif
│   │       │       │   ├── unlink.over.gif
│   │       │       │   ├── wordclean.gif
│   │       │       │   ├── wordclean.over.gif
│   │       │       │   ├── wordcount.gif
│   │       │       │   └── wordcount.over.gif
│   │       │       └── utility
│   │       │           ├── folder.big.gif
│   │       │           ├── folder.small.gif
│   │       │           ├── folder.up.gif
│   │       │           └── image.gif
│   │       ├── examples
│   │       │   ├── custom_ddl_values
│   │       │   │   └── default.aspx
│   │       │   ├── default
│   │       │   │   ├── PoweredByAsp.Net.gif
│   │       │   │   └── default.aspx
│   │       │   ├── default.aspx
│   │       │   ├── default_external
│   │       │   │   └── default.aspx
│   │       │   ├── external_resources
│   │       │   │   └── default.aspx
│   │       │   ├── focus
│   │       │   │   ├── PoweredByAsp.Net.gif
│   │       │   │   └── default.aspx
│   │       │   ├── frames.main.aspx
│   │       │   ├── frames.menu.aspx
│   │       │   ├── fully_loaded
│   │       │   │   ├── default.aspx
│   │       │   │   └── ftb.imagegallery.aspx
│   │       │   ├── fully_loaded_external
│   │       │   │   ├── default.aspx
│   │       │   │   └── ftb.imagegallery.aspx
│   │       │   ├── javascript_api
│   │       │   │   └── default.aspx
│   │       │   ├── languages_and_buttons
│   │       │   │   └── default.aspx
│   │       │   ├── nested_repeater
│   │       │   │   └── default.aspx
│   │       │   ├── nested_usercontrol
│   │       │   │   ├── default.aspx
│   │       │   │   └── subcontrol.ascx
│   │       │   ├── programmatic_creation
│   │       │   │   └── default.aspx
│   │       │   └── webparts
│   │       │       └── default.aspx
│   │       ├── ftb.imagegallery.aspx
│   │       ├── readme.txt
│   │       └── web.config
│   ├── gw
│   │   ├── gw_delectdocument.aspx
│   │   ├── gw_delectdocument.aspx.cs
│   │   ├── gw_documentinfo.aspx
│   │   ├── gw_documentinfo.aspx.cs
│   │   ├── gw_selectlike.aspx
│   │   ├── gw_selectlike.aspx.cs
│   │   ├── gw_senddocument.aspx
│   │   ├── gw_senddocument.aspx.cs
│   │   ├── gw_sendnote.aspx
│   │   ├── gw_sendnote.aspx.cs
│   │   ├── gw_success.aspx
│   │   ├── gw_success.aspx.cs
│   │   ├── gw_takedocument.aspx
│   │   ├── gw_takedocument.aspx.cs
│   │   ├── gw_urge.aspx
│   │   ├── gw_urge.aspx.cs
│   │   └── gwupload
│   │       ├── IMG0050A.jpg
│   │       ├── IMG0070A.jpg
│   │       ├── IMG0073A.jpg
│   │       ├── IMG0075A.jpg
│   │       ├── IMG0077A.jpg
│   │       ├── IMG0079A.jpg
│   │       ├── IMG0080A.jpg
│   │       ├── IMG0081A.jpg
│   │       ├── IMG0082A.jpg
│   │       ├── MyEclipseSplash.bmp
│   │       ├── Thumbs.db
│   │       ├── _想念.gif
│   │       ├── aaa.txt
│   │       ├── abis10.rar
│   │       ├── bbb.txt
│   │       ├── ccc.txt
│   │       ├── ddd.txt
│   │       ├── foldericon2.gif
│   │       ├── qw.txt
│   │       ├── 测试文件.txt
│   │       ├── 测试文件2.txt
│   │       ├── 测试文件3.txt
│   │       ├── 测试文件4.txt
│   │       ├── 测试文件5.txt
│   │       └── 本机相关软件使用密码.txt
│   ├── gxxz
│   │   ├── close.aspx
│   │   ├── close.aspx.cs
│   │   ├── delfile.aspx
│   │   ├── delfile.aspx.cs
│   │   ├── downfile.aspx
│   │   ├── downfile.aspx.cs
│   │   ├── img
│   │   │   ├── 1.gif
│   │   │   ├── 18.gif
│   │   │   ├── 27.swf
│   │   │   ├── 3.gif
│   │   │   ├── Tips_1.gif
│   │   │   ├── arrow1.gif
│   │   │   ├── banner.jpg
│   │   │   ├── bbs
│   │   │   │   ├── SEARCH.psd
│   │   │   │   ├── ab_search.gif
│   │   │   │   ├── bbs_ip.gif
│   │   │   │   ├── del.gif
│   │   │   │   ├── female.gif
│   │   │   │   ├── female1.gif
│   │   │   │   ├── female1.psd
│   │   │   │   ├── folder.gif
│   │   │   │   ├── hui.gif
│   │   │   │   ├── hui.gif.psd
│   │   │   │   ├── leftlin1.gif
│   │   │   │   ├── leftlin1red.gif
│   │   │   │   ├── leftlin1red.psd
│   │   │   │   ├── line.gif
│   │   │   │   ├── lineleft.gif
│   │   │   │   ├── man.gif
│   │   │   │   ├── man1.gif
│   │   │   │   ├── man1.psd
│   │   │   │   ├── new.gif
│   │   │   │   ├── new.gif.psd
│   │   │   │   ├── pin.gif
│   │   │   │   ├── replyffd.gif
│   │   │   │   ├── rightlin1.gif
│   │   │   │   ├── rightline.gif
│   │   │   │   ├── search.gif
│   │   │   │   ├── searchl[k.gif
│   │   │   │   ├── sigline.gif
│   │   │   │   ├── topItem_col.gif
│   │   │   │   ├── topItem_exp.gif
│   │   │   │   ├── touxiangman.gif
│   │   │   │   ├── touxiangmanhui.gif
│   │   │   │   ├── touxiangwoman.gif
│   │   │   │   ├── touxiangwomanhui.gif
│   │   │   │   └── update.gif
│   │   │   ├── bw
│   │   │   │   ├── line.gif
│   │   │   │   ├── line.psd
│   │   │   │   ├── line1.gif
│   │   │   │   └── line1.psd
│   │   │   ├── chat
│   │   │   │   └── 1.gif
│   │   │   ├── chooseuser
│   │   │   │   ├── 1.gif
│   │   │   │   └── 2.gif
│   │   │   ├── clock.gif
│   │   │   ├── common.gif
│   │   │   ├── date_picker.gif
│   │   │   ├── down.gif
│   │   │   ├── f_icon14.gif
│   │   │   ├── f_icon15.gif
│   │   │   ├── f_icon5.gif
│   │   │   ├── f_iconm8.gif
│   │   │   ├── files
│   │   │   │   ├── boxes.png
│   │   │   │   ├── f.gif
│   │   │   │   ├── f_icon2.gif
│   │   │   │   ├── f_icon7.gif
│   │   │   │   ├── forum_power.gif
│   │   │   │   ├── ico_msb.gif
│   │   │   │   └── user_add.gif
│   │   │   ├── files.gif
│   │   │   ├── ico_adfriend.gif
│   │   │   ├── icon
│   │   │   │   ├── asp.gif
│   │   │   │   ├── aspx.gif
│   │   │   │   ├── bat.gif
│   │   │   │   ├── bmp.gif
│   │   │   │   ├── chm.gif
│   │   │   │   ├── cs.gif
│   │   │   │   ├── css.gif
│   │   │   │   ├── dll.gif
│   │   │   │   ├── doc.gif
│   │   │   │   ├── driver.gif
│   │   │   │   ├── exe.gif
│   │   │   │   ├── folder.gif
│   │   │   │   ├── gif.gif
│   │   │   │   ├── hlp.gif
│   │   │   │   ├── htc.gif
│   │   │   │   ├── htm.gif
│   │   │   │   ├── html.gif
│   │   │   │   ├── inc.gif
│   │   │   │   ├── iso.gif
│   │   │   │   ├── jpg.gif
│   │   │   │   ├── js.gif
│   │   │   │   ├── lnk.gif
│   │   │   │   ├── mdb.gif
│   │   │   │   ├── mdf.gif
│   │   │   │   ├── mht.gif
│   │   │   │   ├── midi.gif
│   │   │   │   ├── mp3.gif
│   │   │   │   ├── no.gif
│   │   │   │   ├── pc.gif
│   │   │   │   ├── pdf.gif
│   │   │   │   ├── png.gif
│   │   │   │   ├── ppt.gif
│   │   │   │   ├── psd.gif
│   │   │   │   ├── rar.gif
│   │   │   │   ├── real.gif
│   │   │   │   ├── reg.gif
│   │   │   │   ├── rm.gif
│   │   │   │   ├── sql.gif
│   │   │   │   ├── swf.gif
│   │   │   │   ├── txt.gif
│   │   │   │   ├── url.gif
│   │   │   │   ├── vs.gif
│   │   │   │   ├── wav.gif
│   │   │   │   ├── wma.gif
│   │   │   │   ├── wmp.gif
│   │   │   │   ├── xls.gif
│   │   │   │   ├── xml.gif
│   │   │   │   ├── xslt.gif
│   │   │   │   └── zip.gif
│   │   │   ├── icon15.jpg
│   │   │   ├── icon_info.gif
│   │   │   ├── icon_mobile.gif
│   │   │   ├── iframe
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 2.gif
│   │   │   │   ├── 22.gif
│   │   │   │   ├── 222.gif
│   │   │   │   ├── 66.gif
│   │   │   │   ├── 6928_hot.gif
│   │   │   │   ├── Posttime.gif
│   │   │   │   ├── Print.gif
│   │   │   │   ├── ZA101320422052.gif
│   │   │   │   ├── ZA101326232052.gif
│   │   │   │   ├── ZA101326242052.gif
│   │   │   │   ├── ZA101326252052.gif
│   │   │   │   ├── ab_search.gif
│   │   │   │   ├── announce.gif
│   │   │   │   ├── code.gif
│   │   │   │   ├── copy.gif
│   │   │   │   ├── f_icon12.gif
│   │   │   │   ├── f_icon14.gif
│   │   │   │   ├── f_icon15.gif
│   │   │   │   ├── f_icon2.gif
│   │   │   │   ├── f_icon28.gif
│   │   │   │   ├── f_icon5.gif
│   │   │   │   ├── f_icon8.gif
│   │   │   │   ├── f_iconm5.gif
│   │   │   │   ├── f_iconm6.gif
│   │   │   │   ├── f_iconm8.gif
│   │   │   │   ├── feedback.gif
│   │   │   │   ├── files.gif
│   │   │   │   ├── ico_14.gif
│   │   │   │   ├── ico_sendmsg.gif
│   │   │   │   ├── icon_main1.gif
│   │   │   │   ├── key.gif
│   │   │   │   ├── key.jpg
│   │   │   │   ├── msnadd.gif
│   │   │   │   ├── msnchat.gif
│   │   │   │   ├── myphoto-group.gif
│   │   │   │   ├── myphoto-msg.gif
│   │   │   │   ├── myphoto-note.gif
│   │   │   │   ├── refresh.gif
│   │   │   │   ├── rtg_email.gif
│   │   │   │   ├── sendMail.gif
│   │   │   │   ├── sharing.gif
│   │   │   │   ├── up.gif
│   │   │   │   ├── upload.gif
│   │   │   │   └── 复件 2.gif
│   │   │   ├── jpg
│   │   │   │   └── NEWS
│   │   │   │       ├── 1.gif
│   │   │   │       ├── 1.jpg
│   │   │   │       ├── 1.psd
│   │   │   │       ├── 11.gif
│   │   │   │       ├── 2.gif
│   │   │   │       ├── 2.jpg
│   │   │   │       ├── 20031225844.gif
│   │   │   │       ├── 3.gif
│   │   │   │       ├── 7.psd
│   │   │   │       ├── d.gif
│   │   │   │       ├── enews.jpg
│   │   │   │       ├── enews.psd
│   │   │   │       └── 未标题-13.psd
│   │   │   ├── load
│   │   │   │   └── load.gif
│   │   │   ├── man.gif
│   │   │   ├── minus.gif
│   │   │   ├── msn.gif
│   │   │   ├── myalbum.gif
│   │   │   ├── myphoto-chat.gif
│   │   │   ├── myw
│   │   │   │   ├── banner.jpg
│   │   │   │   ├── bannerq.jpg
│   │   │   │   ├── banner前台.psd
│   │   │   │   └── banner后台.psd
│   │   │   ├── newgif.gif
│   │   │   ├── oaserver.gif
│   │   │   ├── open.gif
│   │   │   ├── pen.gif
│   │   │   ├── pen1.gif
│   │   │   ├── person.gif
│   │   │   ├── person1.gif
│   │   │   ├── pic_61.gif
│   │   │   ├── plus.gif
│   │   │   ├── pluss.gif
│   │   │   ├── print.gif
│   │   │   ├── prints.gif
│   │   │   ├── quanxian
│   │   │   │   ├── face1.gif
│   │   │   │   ├── file.gif
│   │   │   │   ├── gw.gif
│   │   │   │   └── ico_msb.gif
│   │   │   ├── rdt.gif
│   │   │   ├── re.gif
│   │   │   ├── readmore.gif
│   │   │   ├── red_folder.gif
│   │   │   ├── school
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 2.gif
│   │   │   │   ├── 3.gif
│   │   │   │   ├── 4.gif
│   │   │   │   ├── 5.gif
│   │   │   │   ├── 6.gif
│   │   │   │   └── 7.gif
│   │   │   ├── share
│   │   │   │   ├── arrowtop.gif
│   │   │   │   ├── article_icon.gif
│   │   │   │   ├── code.gif
│   │   │   │   ├── demo.gif
│   │   │   │   ├── share.jpg
│   │   │   │   ├── sharing.gif
│   │   │   │   └── up.gif
│   │   │   ├── sharing.gif
│   │   │   ├── sign
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── 3.jpg
│   │   │   │   ├── 4.jpg
│   │   │   │   ├── 5.jpg
│   │   │   │   ├── 6.jpg
│   │   │   │   └── 7.jpg
│   │   │   ├── sjyf.gif
│   │   │   ├── sp
│   │   │   │   ├── 0.gif
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 3.gif
│   │   │   │   └── 4.gif
│   │   │   ├── support_msn.gif
│   │   │   ├── txl
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 10.gif
│   │   │   │   ├── 12.gif
│   │   │   │   ├── 15.gif
│   │   │   │   ├── 16.gif
│   │   │   │   ├── 24.gif
│   │   │   │   ├── 25.gif
│   │   │   │   ├── 26.gif
│   │   │   │   ├── 27.gif
│   │   │   │   ├── 28.gif
│   │   │   │   ├── 29.gif
│   │   │   │   ├── 3.gif
│   │   │   │   ├── 31.gif
│   │   │   │   ├── 7.gif
│   │   │   │   ├── Cnext.gif
│   │   │   │   ├── Cprevious.gif
│   │   │   │   ├── From.gif
│   │   │   │   ├── code.gif
│   │   │   │   ├── foldericon1.gif
│   │   │   │   ├── foldericon2.gif
│   │   │   │   ├── hn2_sunny.gif
│   │   │   │   ├── hn2_t_sunny.gif
│   │   │   │   ├── icon_trackback.gif
│   │   │   │   ├── level3.gif
│   │   │   │   ├── mm_snd.gif
│   │   │   │   └── tag.gif
│   │   │   ├── tz
│   │   │   │   ├── new-027.gif
│   │   │   │   ├── new-028.gif
│   │   │   │   ├── new-030.jpg
│   │   │   │   └── new-035.gif
│   │   │   ├── up.gif
│   │   │   ├── view-icon01.gif
│   │   │   ├── view-icon02.gif
│   │   │   ├── vod
│   │   │   │   └── 1.jpg
│   │   │   ├── women.gif
│   │   │   ├── write.gif
│   │   │   ├── write1.gif
│   │   │   ├── write1.psd
│   │   │   ├── xls.gif
│   │   │   └── zhidu
│   │   │       ├── M0000805.gif
│   │   │       ├── M0001204.gif
│   │   │       ├── M0001208.gif
│   │   │       ├── M0002524.gif
│   │   │       └── M0002525.gif
│   │   ├── lb_adminupload.aspx
│   │   ├── lb_adminupload.aspx.cs
│   │   ├── lb_selectFile.aspx
│   │   ├── lb_selectFile.aspx.cs
│   │   ├── lb_upload.aspx
│   │   ├── lb_upload.aspx.cs
│   │   ├── leibie.aspx
│   │   ├── leibie.aspx.cs
│   │   ├── openfile.aspx
│   │   ├── openfile.aspx.cs
│   │   ├── scsecce.aspx
│   │   ├── scsecce.aspx.cs
│   │   ├── shoucang.aspx
│   │   ├── shoucang.aspx.cs
│   │   ├── shoucangpost.aspx
│   │   ├── shoucangpost.aspx.cs
│   │   ├── showdepartment.aspx
│   │   ├── showdepartment.aspx.cs
│   │   ├── upload
│   │   │   ├── 91d2.reg
│   │   │   ├── BUG.txt
│   │   │   ├── JavaScript字符串函数大全 .txt
│   │   │   ├── View_1.sql
│   │   │   ├── bannerq.jpg
│   │   │   ├── common.gif
│   │   │   ├── dfdf.txt
│   │   │   ├── eclipse.exe
│   │   │   ├── eclipse.ini
│   │   │   ├── game.ico
│   │   │   ├── index.jsp
│   │   │   ├── input.css
│   │   │   ├── new-035.gif
│   │   │   ├── readwenjian.aspx.cs
│   │   │   ├── run.bat
│   │   │   ├── time.gif
│   │   │   ├── 河马 .txt
│   │   │   ├── 新建 BMP 图像.bmp
│   │   │   ├── 新建 文本文档.txt
│   │   │   ├── 公章.rar
│   │   │   ├── 分工.txt
│   │   │   ├── 说明.txt
│   │   │   ├── 知识点.txt
│   │   │   ├── 数据库NEW.txt
│   │   │   ├── 办公桌面.html
│   │   │   ├── 测试文件.txt
│   │   │   ├── 技术有限公司.gif
│   │   │   ├── 推荐操作系统.txt
│   │   │   ├── 公司车辆管理新规定.doc
│   │   │   └── 本机相关软件使用密码.txt
│   │   ├── upsecce.aspx
│   │   ├── upsecce.aspx.cs
│   │   ├── zhuanfa.aspx
│   │   └── zhuanfa.aspx.cs
│   ├── images
│   │   ├── 111.gif
│   │   ├── 66.gif
│   │   ├── Thumbs.db
│   │   ├── addr.gif
│   │   ├── banner.jpg
│   │   ├── bannerq.jpg
│   │   ├── bannertop.jpg
│   │   ├── briefcase.gif
│   │   ├── cal.gif
│   │   ├── f_icon12.gif
│   │   ├── f_icon14.gif
│   │   ├── f_icon15.gif
│   │   ├── f_icon5.gif
│   │   ├── f_iconm8.gif
│   │   ├── files.gif
│   │   ├── foldericon1.gif
│   │   ├── foldericon2.gif
│   │   ├── from.gif
│   │   ├── gx
│   │   │   ├── Thumbs.db
│   │   │   ├── code.gif
│   │   │   ├── cs-1.gif
│   │   │   ├── cs-3.gif
│   │   │   ├── minus.gif
│   │   │   ├── plus.gif
│   │   │   ├── share.jpg
│   │   │   ├── sharing.gif
│   │   │   ├── txt.gif
│   │   │   └── up.gif
│   │   ├── htmlicon.gif
│   │   ├── huiyan
│   │   │   ├── Thumbs.db
│   │   │   ├── biaoti.gif
│   │   │   ├── close.gif
│   │   │   ├── fabutongzhi.gif
│   │   │   ├── jieshoutongzhi.gif
│   │   │   ├── neirong.gif
│   │   │   ├── open.gif
│   │   │   ├── tongzhiguanli.gif
│   │   │   └── up.gif
│   │   ├── ico_1.gif
│   │   ├── ico_10.gif
│   │   ├── ico_6.gif
│   │   ├── ico_msb.gif
│   │   ├── images_wc
│   │   │   ├── Thumbs.db
│   │   │   ├── back.gif
│   │   │   ├── leftlin.gif
│   │   │   ├── leftlin1.gif
│   │   │   ├── line.gif
│   │   │   ├── rightlin.gif
│   │   │   └── time.gif
│   │   ├── mesg.gif
│   │   ├── new-035.gif
│   │   ├── note.gif
│   │   ├── qs
│   │   │   ├── Thumbs.db
│   │   │   ├── back.gif
│   │   │   ├── leftlin.gif
│   │   │   ├── leftlin1.gif
│   │   │   ├── line.gif
│   │   │   ├── rightlin.gif
│   │   │   └── time.gif
│   │   ├── sharing.gif
│   │   ├── sj
│   │   │   ├── 1.gif
│   │   │   ├── 2.gif
│   │   │   ├── 37.gif
│   │   │   ├── Thumbs.db
│   │   │   ├── cs-1.gif
│   │   │   ├── cs-2.gif
│   │   │   ├── cs-3.gif
│   │   │   ├── emot
│   │   │   │   ├── 01.gif
│   │   │   │   ├── 02.gif
│   │   │   │   ├── 03.gif
│   │   │   │   ├── 04.gif
│   │   │   │   ├── 05.gif
│   │   │   │   ├── 06.gif
│   │   │   │   ├── 07.gif
│   │   │   │   ├── 08.gif
│   │   │   │   ├── 09.gif
│   │   │   │   ├── 10.gif
│   │   │   │   ├── 11.gif
│   │   │   │   ├── 12.gif
│   │   │   │   ├── 13.gif
│   │   │   │   ├── 14.gif
│   │   │   │   ├── 15.gif
│   │   │   │   ├── 16.gif
│   │   │   │   ├── 17.gif
│   │   │   │   ├── 18.gif
│   │   │   │   ├── 19.gif
│   │   │   │   ├── 20.gif
│   │   │   │   ├── 21.gif
│   │   │   │   ├── 22.gif
│   │   │   │   ├── 23.gif
│   │   │   │   ├── 24.gif
│   │   │   │   ├── 25.gif
│   │   │   │   ├── 26.gif
│   │   │   │   ├── 27.gif
│   │   │   │   ├── 28.gif
│   │   │   │   ├── 29.gif
│   │   │   │   ├── 30.gif
│   │   │   │   ├── 31.gif
│   │   │   │   ├── 32.gif
│   │   │   │   ├── 33.gif
│   │   │   │   ├── 34.gif
│   │   │   │   ├── 34.jpg
│   │   │   │   ├── 35.gif
│   │   │   │   ├── 36.gif
│   │   │   │   ├── 37.gif
│   │   │   │   ├── 38.gif
│   │   │   │   ├── 39.gif
│   │   │   │   ├── 40.gif
│   │   │   │   ├── 41.gif
│   │   │   │   ├── 42.gif
│   │   │   │   ├── 43.gif
│   │   │   │   ├── 44.gif
│   │   │   │   ├── 45.gif
│   │   │   │   ├── 46.gif
│   │   │   │   ├── 47.gif
│   │   │   │   ├── 48.gif
│   │   │   │   ├── 49.gif
│   │   │   │   ├── 50.gif
│   │   │   │   └── 79.gif
│   │   │   ├── f_icon2.gif
│   │   │   ├── f_icon7.gif
│   │   │   ├── face1.gif
│   │   │   ├── file.gif
│   │   │   ├── forum_power.gif
│   │   │   ├── gw.gif
│   │   │   ├── ico_msb.gif
│   │   │   ├── leftlin1.gif
│   │   │   ├── line.gif
│   │   │   ├── line1.gif
│   │   │   ├── pen.gif
│   │   │   ├── pic4.gif
│   │   │   ├── rightlin1.gif
│   │   │   ├── up.gif
│   │   │   ├── user_add.gif
│   │   │   ├── write.gif
│   │   │   └── write1.gif
│   │   ├── sp
│   │   │   ├── 3.gif
│   │   │   ├── Thumbs.db
│   │   │   └── icon1.gif
│   │   ├── time.gif
│   │   ├── wp.gif
│   │   └── wximg
│   │       ├── 1.jpg
│   │       ├── 2.gif
│   │       ├── Thumbs.db
│   │       ├── announce.gif
│   │       ├── feedback.gif
│   │       ├── line.gif
│   │       ├── line.psd
│   │       ├── line1.gif
│   │       ├── line1.psd
│   │       ├── myalbum.gif
│   │       ├── new-028.gif
│   │       └── touxiangman.gif
│   ├── index.htm
│   ├── index_top
│   │   ├── loginout.aspx
│   │   ├── loginout.aspx.cs
│   │   ├── password.aspx
│   │   ├── password.aspx.cs
│   │   ├── updatepassword.aspx
│   │   └── updatepassword.aspx.cs
│   ├── js
│   │   └── calendar.js
│   ├── lb_shenpi
│   │   ├── adminshenpi.aspx
│   │   ├── adminshenpi.aspx.cs
│   │   ├── banli.aspx
│   │   ├── banli.aspx.cs
│   │   ├── done.aspx
│   │   ├── done.aspx.cs
│   │   ├── doshenpi.aspx
│   │   ├── doshenpi.aspx.cs
│   │   ├── openshenpi.aspx
│   │   ├── openshenpi.aspx.cs
│   │   ├── over.aspx
│   │   ├── over.aspx.cs
│   │   ├── splist.aspx
│   │   ├── splist.aspx.cs
│   │   ├── stop.aspx
│   │   ├── stop.aspx.cs
│   │   ├── tijiao.aspx
│   │   ├── tijiao.aspx.cs
│   │   ├── tjpost.aspx
│   │   ├── tjpost.aspx.cs
│   │   ├── updatepost.aspx
│   │   ├── updatepost.aspx.cs
│   │   ├── updateshenpi.aspx
│   │   └── updateshenpi.aspx.cs
│   ├── left.aspx
│   ├── left.aspx.cs
│   ├── licenses.licx
│   ├── linminchao
│   │   ├── bbs
│   │   │   ├── lt_addHF.aspx
│   │   │   ├── lt_addHF.aspx.cs
│   │   │   ├── lt_addlt.aspx
│   │   │   ├── lt_addlt.aspx.cs
│   │   │   ├── lt_allFY.aspx
│   │   │   ├── lt_allFY.aspx.cs
│   │   │   ├── lt_delelt.aspx
│   │   │   ├── lt_delelt.aspx.cs
│   │   │   ├── lt_delmyhuifu.aspx
│   │   │   ├── lt_delmyhuifu.aspx.cs
│   │   │   ├── lt_kuaisu.aspx
│   │   │   ├── lt_kuaisu.aspx.cs
│   │   │   ├── lt_lookOne.aspx
│   │   │   ├── lt_lookOne.aspx.cs
│   │   │   ├── lt_lookbbs.aspx
│   │   │   ├── lt_lookbbs.aspx.cs
│   │   │   ├── lt_touxiang.aspx
│   │   │   ├── lt_touxiang.aspx.cs
│   │   │   ├── lt_update.aspx
│   │   │   ├── lt_update.aspx.cs
│   │   │   ├── lt_updateHF.aspx
│   │   │   └── lt_updateHF.aspx.cs
│   │   ├── img
│   │   │   ├── 1.gif
│   │   │   ├── bbs_ip.gif
│   │   │   ├── bw
│   │   │   │   ├── line.gif
│   │   │   │   ├── line.psd
│   │   │   │   ├── line1.gif
│   │   │   │   └── line1.psd
│   │   │   ├── cs-1.gif
│   │   │   ├── del.gif
│   │   │   ├── face1.gif
│   │   │   ├── folder.gif
│   │   │   ├── hui.gif
│   │   │   ├── icon1.gif
│   │   │   ├── new.gif
│   │   │   ├── sigline.gif
│   │   │   ├── txl
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 12.gif
│   │   │   │   ├── 16.gif
│   │   │   │   ├── touxiangman.gif
│   │   │   │   ├── touxiangmanhui.gif
│   │   │   │   ├── touxiangwoman.gif
│   │   │   │   └── touxiangwomanhui.gif
│   │   │   ├── up.gif
│   │   │   └── update.gif
│   │   ├── touxiang
│   │   │   ├── 1MyEclipseSplash.bmp
│   │   │   ├── MyEclipseSplash.bmp
│   │   │   ├── MyEclipseSplash.bmp.gif
│   │   │   ├── asp.gif
│   │   │   ├── aspx.gif
│   │   │   ├── bat.gif
│   │   │   ├── bmp.gif
│   │   │   ├── chm.gif
│   │   │   ├── cs.gif
│   │   │   ├── css.gif
│   │   │   ├── dll.gif
│   │   │   ├── doc.gif
│   │   │   ├── driver.gif
│   │   │   ├── exe.gif
│   │   │   ├── folder.gif
│   │   │   ├── gif.gif
│   │   │   ├── hlp.gif
│   │   │   ├── htc.gif
│   │   │   ├── htm.gif
│   │   │   ├── html.gif
│   │   │   ├── inc.gif
│   │   │   ├── iso.gif
│   │   │   ├── jpg.gif
│   │   │   ├── js.gif
│   │   │   ├── lnk.gif
│   │   │   ├── mdb.gif
│   │   │   ├── mdf.gif
│   │   │   ├── mht.gif
│   │   │   ├── midi.gif
│   │   │   ├── mp3.gif
│   │   │   ├── no.gif
│   │   │   ├── noimg.gif
│   │   │   ├── notice.html.gif
│   │   │   ├── pc.gif
│   │   │   ├── pdf.gif
│   │   │   ├── png.gif
│   │   │   ├── ppt.gif
│   │   │   ├── psd.gif
│   │   │   ├── rar.gif
│   │   │   ├── real.gif
│   │   │   ├── reg.gif
│   │   │   ├── rm.gif
│   │   │   ├── sql.gif
│   │   │   ├── swf.gif
│   │   │   ├── txt.gif
│   │   │   ├── url.gif
│   │   │   ├── vs.gif
│   │   │   ├── wav.gif
│   │   │   ├── wma.gif
│   │   │   ├── wmp.gif
│   │   │   ├── xls.gif
│   │   │   ├── xml.gif
│   │   │   ├── xslt.gif
│   │   │   └── zip.gif
│   │   └── xw
│   │       ├── Default.aspx
│   │       ├── Default.aspx.cs
│   │       ├── ceshi.aspx
│   │       ├── ceshi.aspx.cs
│   │       ├── closenews.aspx
│   │       ├── closenews.aspx.cs
│   │       ├── xw_addNews.aspx
│   │       ├── xw_addNews.aspx.cs
│   │       ├── xw_deleteNews.aspx
│   │       ├── xw_deleteNews.aspx.cs
│   │       ├── xw_glNews.aspx
│   │       ├── xw_glNews.aspx.cs
│   │       ├── xw_lookNews.aspx
│   │       ├── xw_lookNews.aspx.cs
│   │       ├── xw_lookOneNews.aspx
│   │       ├── xw_lookOneNews.aspx.cs
│   │       ├── xw_shanchu.aspx
│   │       ├── xw_shanchu.aspx.cs
│   │       ├── xw_updateNews.aspx
│   │       └── xw_updateNews.aspx.cs
│   ├── login.aspx
│   ├── login.aspx.cs
│   ├── loginyanzheng.aspx
│   ├── loginyanzheng.aspx.cs
│   ├── messagetimer.aspx
│   ├── messagetimer.aspx.cs
│   ├── oaPro.suo
│   ├── officetable.aspx
│   ├── officetable.aspx.cs
│   ├── qs
│   │   ├── bangongtongxuluxiugai.aspx
│   │   ├── bangongtongxuluxiugai.aspx.cs
│   │   ├── danweitxl.aspx
│   │   ├── danweitxl.aspx.cs
│   │   ├── tijiaobangongtongxunlu.aspx
│   │   └── tijiaobangongtongxunlu.aspx.cs
│   ├── qs_rizhi
│   │   ├── gerenrizhi.aspx
│   │   ├── gerenrizhi.aspx.cs
│   │   ├── jiluxiu.aspx
│   │   ├── jiluxiu.aspx.cs
│   │   ├── peiyueadd.aspx
│   │   ├── peiyueadd.aspx.cs
│   │   ├── piyuedelete.aspx
│   │   ├── piyuedelete.aspx.cs
│   │   ├── piyuexiu.aspx
│   │   ├── piyuexiu.aspx.cs
│   │   ├── rizhihuizong.aspx
│   │   ├── rizhihuizong.aspx.cs
│   │   ├── rizhijilu.aspx
│   │   ├── rizhijilu.aspx.cs
│   │   ├── rizhineirong.aspx
│   │   ├── rizhineirong.aspx.cs
│   │   ├── rizhipiyue.aspx
│   │   ├── rizhipiyue.aspx.cs
│   │   ├── rizhishanchu.aspx
│   │   ├── rizhishanchu.aspx.cs
│   │   ├── tijiaorizhi.aspx
│   │   └── tijiaorizhi.aspx.cs
│   ├── qs_wenjian
│   │   ├── chakanhuifu.aspx
│   │   ├── chakanhuifu.aspx.cs
│   │   ├── download.aspx
│   │   ├── download.aspx.cs
│   │   ├── fileslog.aspx
│   │   ├── fileslog.aspx.cs
│   │   ├── jieshouwenjian.aspx
│   │   ├── jieshouwenjian.aspx.cs
│   │   ├── jiqunchuansong1.aspx
│   │   ├── jiqunchuansong1.aspx.cs
│   │   ├── liebieguanli.aspx
│   │   ├── liebieguanli.aspx.cs
│   │   ├── liebieshanchu.aspx
│   │   ├── liebieshanchu.aspx.cs
│   │   ├── liebieshezhi.aspx
│   │   ├── liebieshezhi.aspx.cs
│   │   ├── liebiexiu.aspx
│   │   ├── liebiexiu.aspx.cs
│   │   ├── readwenjian.aspx
│   │   ├── readwenjian.aspx.cs
│   │   ├── tianjiabeizhu.aspx
│   │   ├── tianjiabeizhu.aspx.cs
│   │   ├── wenjianchuansong.aspx
│   │   ├── wenjianchuansong.aspx.cs
│   │   ├── wenjianhuifu.aspx
│   │   ├── wenjianhuifu.aspx.cs
│   │   ├── wenjianshanchu.aspx
│   │   └── wenjianshanchu.aspx.cs
│   ├── quanxian
│   │   ├── qx_level.aspx
│   │   └── qx_level.aspx.cs
│   ├── rc
│   │   ├── jh_deptplan.aspx
│   │   ├── jh_deptplan.aspx.cs
│   │   ├── jh_employeeplan.aspx
│   │   ├── jh_employeeplan.aspx.cs
│   │   ├── jh_myplan.aspx
│   │   ├── jh_myplan.aspx.cs
│   │   ├── jh_plancontent.aspx
│   │   ├── jh_plancontent.aspx.cs
│   │   ├── jh_plandelete.aspx
│   │   ├── jh_plandelete.aspx.cs
│   │   ├── jh_planmanage.aspx
│   │   ├── jh_planmanage.aspx.cs
│   │   ├── jh_planupdate.aspx
│   │   ├── jh_planupdate.aspx.cs
│   │   ├── jh_writeplan.aspx
│   │   ├── jh_writeplan.aspx.cs
│   │   ├── rc_employeenote.aspx
│   │   ├── rc_employeenote.aspx.cs
│   │   ├── rc_notecontent.aspx
│   │   ├── rc_notecontent.aspx.cs
│   │   ├── rc_notedelete.aspx
│   │   ├── rc_notedelete.aspx.cs
│   │   ├── rc_notemanage.aspx
│   │   ├── rc_notemanage.aspx.cs
│   │   ├── rc_noteupdate.aspx
│   │   ├── rc_noteupdate.aspx.cs
│   │   ├── rc_read.aspx
│   │   ├── rc_read.aspx.cs
│   │   ├── rc_selectlike.aspx
│   │   ├── rc_selectlike.aspx.cs
│   │   ├── rc_writecalendar.aspx
│   │   └── rc_writecalendar.aspx.cs
│   ├── shipin
│   │   └── shipin.htm
│   ├── shipin.aspx
│   ├── shipin.aspx.cs
│   ├── tanchuxiaoxi.aspx
│   ├── tanchuxiaoxi.aspx.cs
│   ├── top.aspx
│   ├── top.aspx.cs
│   ├── tzManager
│   │   ├── addtz.aspx
│   │   ├── addtz.aspx.cs
│   │   ├── close.aspx
│   │   ├── close.aspx.cs
│   │   ├── deltz.aspx
│   │   ├── deltz.aspx.cs
│   │   ├── guanlitongzhi.aspx
│   │   ├── guanlitongzhi.aspx.cs
│   │   ├── mohuchaxun.aspx
│   │   ├── mohuchaxun.aspx.cs
│   │   ├── open.aspx
│   │   ├── open.aspx.cs
│   │   ├── sendwordindex.aspx
│   │   ├── sendwordindex.aspx.cs
│   │   ├── tongzhineirong.aspx
│   │   ├── tongzhineirong.aspx.cs
│   │   ├── tzdept.aspx
│   │   ├── tzdept.aspx.cs
│   │   ├── updaz.aspx
│   │   └── updaz.aspx.cs
│   ├── wc_rlzy
│   │   ├── aaaa.aspx
│   │   ├── aaaa.aspx.cs
│   │   ├── dagl.aspx
│   │   ├── dagl.aspx.cs
│   │   ├── rlzy_bmda.aspx
│   │   ├── rlzy_bmda.aspx.cs
│   │   ├── rlzy_bmkq.aspx
│   │   ├── rlzy_bmkq.aspx.cs
│   │   ├── rlzy_bmqkxx.aspx
│   │   ├── rlzy_bmqkxx.aspx.cs
│   │   ├── rlzy_dacx.aspx
│   │   ├── rlzy_dacx.aspx.cs
│   │   ├── rlzy_dasc.aspx
│   │   ├── rlzy_dasc.aspx.cs
│   │   ├── rlzy_daxg.aspx
│   │   ├── rlzy_daxg.aspx.cs
│   │   ├── rlzy_grkq.aspx
│   │   ├── rlzy_grkq.aspx.cs
│   │   ├── rlzy_kqjl.aspx
│   │   ├── rlzy_kqjl.aspx.cs
│   │   ├── rlzy_kqsc.aspx
│   │   ├── rlzy_kqsc.aspx.cs
│   │   ├── rlzy_kqtj.aspx
│   │   ├── rlzy_kqtj.aspx.cs
│   │   ├── rlzy_lrda.aspx
│   │   ├── rlzy_lrda.aspx.cs
│   │   ├── rlzy_plsckq.aspx
│   │   ├── rlzy_plsckq.aspx.cs
│   │   ├── rlzy_sykq.aspx
│   │   ├── rlzy_sykq.aspx.cs
│   │   ├── rlzy_zxkq.aspx
│   │   └── rlzy_zxkq.aspx.cs
│   ├── wc_zcgl
│   │   ├── chaxun.aspx
│   │   ├── chaxun.aspx.cs
│   │   ├── weibaofei.aspx
│   │   ├── weibaofei.aspx.cs
│   │   ├── yibaofei.aspx
│   │   ├── yibaofei.aspx.cs
│   │   ├── zcbf.aspx
│   │   ├── zcbf.aspx.cs
│   │   ├── zcgl.aspx
│   │   ├── zcgl.aspx.cs
│   │   ├── zclb.aspx
│   │   ├── zclb.aspx.cs
│   │   ├── zclr.aspx
│   │   ├── zclr.aspx.cs
│   │   ├── zclr2.aspx
│   │   ├── zclr2.aspx.cs
│   │   ├── zcsc.aspx
│   │   ├── zcsc.aspx.cs
│   │   ├── zcxg.aspx
│   │   └── zcxg.aspx.cs
│   ├── wx_xiaoxi
│   │   ├── bumenqunfa.aspx
│   │   ├── bumenqunfa.aspx.cs
│   │   ├── chakanfasongneirong.aspx
│   │   ├── chakanfasongneirong.aspx.cs
│   │   ├── chakanjiluneirong.aspx
│   │   ├── chakanjiluneirong.aspx.cs
│   │   ├── deletechengyuan.aspx
│   │   ├── deletechengyuan.aspx.cs
│   │   ├── deletefasongcheck.aspx
│   │   ├── deletefasongcheck.aspx.cs
│   │   ├── deletegroups.aspx
│   │   ├── deletegroups.aspx.cs
│   │   ├── deletejieshoucheck.aspx
│   │   ├── deletejieshoucheck.aspx.cs
│   │   ├── fasongjilu.aspx
│   │   ├── fasongjilu.aspx.cs
│   │   ├── fasongxiaoxi.aspx
│   │   ├── fasongxiaoxi.aspx.cs
│   │   ├── insertchengyuan.aspx
│   │   ├── insertchengyuan.aspx.cs
│   │   ├── jieshouxinxi.aspx
│   │   ├── jieshouxinxi.aspx.cs
│   │   ├── qunzu.aspx
│   │   ├── qunzu.aspx.cs
│   │   ├── updatezuming.aspx
│   │   └── updatezuming.aspx.cs
│   └── wx_zongjie
│       ├── nianguanli.aspx
│       ├── nianguanli.aspx.cs
│       ├── nianzongjie.aspx
│       ├── nianzongjie.aspx.cs
│       ├── yueguanli.aspx
│       ├── yueguanli.aspx.cs
│       ├── yuezongjie.aspx
│       ├── yuezongjie.aspx.cs
│       ├── zongjie.aspx
│       └── zongjie.aspx.cs
├── oaPro.sln
└── oaPro.suo

140 directories, 1818 files


实例下载地址

OA系统源代码 C# 3层架构OA

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警