实例介绍
基于websocket的网页即时通讯(可传附件图片涂鸦、最小化弹窗).NET superwebsocket做的winform服务端,UEditor做的附件等小功能 代码简陋仅供参考
【实例截图】
【核心代码】
4744302542894016027.zip
└── chat
├── server
│ └── websocketServer
│ └── webSocket服务端
│ ├── packages
│ │ ├── log4net.2.0.8
│ │ │ ├── lib
│ │ │ │ ├── net20-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net35-client
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net35-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net40-client
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net40-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net45-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ └── netstandard1.3
│ │ │ │ └── log4net.dll
│ │ │ └── log4net.2.0.8.nupkg
│ │ ├── Newtonsoft.Json.5.0.8
│ │ │ ├── lib
│ │ │ │ ├── net20
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── net35
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── net40
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── net45
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── netcore45
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── portable-net40+sl4+wp7+win8
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ └── portable-net45+wp80+win8
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── Newtonsoft.Json.5.0.8.nupkg
│ │ │ └── tools
│ │ │ └── install.ps1
│ │ ├── ObjectPrinter.2.0.35
│ │ │ ├── lib
│ │ │ │ └── Net40
│ │ │ │ ├── ObjectPrinter.dll
│ │ │ │ └── ObjectPrinter.xml
│ │ │ └── ObjectPrinter.2.0.35.nupkg
│ │ ├── ObjectPrinter-Log4Net-1.2.10.2.0.35
│ │ │ ├── lib
│ │ │ │ └── Net40
│ │ │ │ ├── ObjectPrinter.Log4Net.v1210.dll
│ │ │ │ └── ObjectPrinter.Log4Net.v1210.xml
│ │ │ └── ObjectPrinter-Log4Net-1.2.10.2.0.35.nupkg
│ │ ├── repositories.config
│ │ ├── SuperSocket.1.6.6.1
│ │ │ ├── lib
│ │ │ │ ├── net35
│ │ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ │ ├── SuperSocket.Common.XML
│ │ │ │ │ ├── SuperSocket.Facility.dll
│ │ │ │ │ ├── SuperSocket.Facility.XML
│ │ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ │ └── SuperSocket.SocketBase.XML
│ │ │ │ ├── net40
│ │ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ │ ├── SuperSocket.Common.XML
│ │ │ │ │ ├── SuperSocket.Facility.dll
│ │ │ │ │ ├── SuperSocket.Facility.XML
│ │ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ │ └── SuperSocket.SocketBase.XML
│ │ │ │ └── net45
│ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ ├── SuperSocket.Common.XML
│ │ │ │ ├── SuperSocket.Facility.dll
│ │ │ │ ├── SuperSocket.Facility.XML
│ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ └── SuperSocket.SocketBase.XML
│ │ │ └── SuperSocket.1.6.6.1.nupkg
│ │ └── SuperWebSocket.0.9.0.2
│ │ ├── lib
│ │ │ └── net40
│ │ │ ├── SuperSocket.Common.dll
│ │ │ ├── SuperSocket.Common.pdb
│ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ ├── SuperSocket.SocketBase.pdb
│ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ ├── SuperSocket.SocketEngine.pdb
│ │ │ ├── SuperWebSocket.dll
│ │ │ ├── SuperWebSocket.pdb
│ │ │ └── SuperWebSocket.XML
│ │ └── SuperWebSocket.0.9.0.2.nupkg
│ ├── webSocket服务端
│ │ ├── app_code
│ │ │ ├── socketServer_d.cs
│ │ │ └── SQLHelper.cs
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── log4net.dll
│ │ │ ├── log4net.xml
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── SuperSocket.Common.dll
│ │ │ ├── SuperSocket.Common.pdb
│ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ ├── SuperSocket.SocketBase.pdb
│ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ ├── SuperSocket.SocketEngine.pdb
│ │ │ ├── SuperWebSocket.dll
│ │ │ ├── SuperWebSocket.pdb
│ │ │ ├── SuperWebSocket.xml
│ │ │ ├── webSocket服务端.exe
│ │ │ ├── webSocket服务端.exe.config
│ │ │ ├── webSocket服务端.pdb
│ │ │ ├── webSocket服务端.vshost.exe
│ │ │ ├── webSocket服务端.vshost.exe.config
│ │ │ └── webSocket服务端.vshost.exe.manifest
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── log4net.dll
│ │ ├── log4net.xml
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.pdb
│ │ ├── Newtonsoft.Json.xml
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── webSocket服务端.csproj.FileListAbsolute.txt
│ │ │ ├── webSocket服务端.csproj.GenerateResource.Cache
│ │ │ ├── webSocket服务端.exe
│ │ │ ├── webSocket服务端.Form1.resources
│ │ │ ├── webSocket服务端.pdb
│ │ │ └── webSocket服务端.Properties.Resources.resources
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SuperSocket.Common.dll
│ │ ├── SuperSocket.SocketBase.dll
│ │ ├── SuperSocket.SocketEngine.dll
│ │ ├── SuperWebSocket.dll
│ │ ├── SuperWebSocket.xml
│ │ ├── webSocket服务端.csproj
│ │ └── webSocket服务端.csproj.user
│ ├── webSocket服务端.sln
│ └── webSocket服务端.v12.suo
├── web
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-responsive.css
│ │ ├── custom.css
│ │ ├── datepicker.css
│ │ ├── demo.css
│ │ ├── flat-ui.css
│ │ ├── magnific-popup.css
│ │ ├── main.css
│ │ ├── modals.less
│ │ ├── style.css
│ │ ├── StyleSheet.css
│ │ └── templatemo-style.css
│ ├── font-awesome-4.7.0
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ └── HELP-US-OUT.txt
│ ├── fonts
│ │ ├── booom.eot
│ │ ├── booom.svg
│ │ ├── booom.ttf
│ │ ├── booom.woff
│ │ ├── Flat-UI-Icons.dev.svg
│ │ ├── Flat-UI-Icons.eot
│ │ ├── Flat-UI-Icons.svg
│ │ ├── Flat-UI-Icons.ttf
│ │ ├── Flat-UI-Icons.woff
│ │ ├── icomoon-session.json
│ │ └── lato
│ │ ├── lato-black-webfont.eot
│ │ ├── lato-black-webfont.svg
│ │ ├── lato-black-webfont.ttf
│ │ ├── lato-black-webfont.woff
│ │ ├── lato-bolditalic-webfont.eot
│ │ ├── lato-bolditalic-webfont.svg
│ │ ├── lato-bolditalic-webfont.ttf
│ │ ├── lato-bolditalic-webfont.woff
│ │ ├── lato-bold-webfont.eot
│ │ ├── lato-bold-webfont.svg
│ │ ├── lato-bold-webfont.ttf
│ │ ├── lato-bold-webfont.woff
│ │ ├── lato-italic-webfont.eot
│ │ ├── lato-italic-webfont.svg
│ │ ├── lato-italic-webfont.ttf
│ │ ├── lato-italic-webfont.woff
│ │ ├── lato-light-webfont.eot
│ │ ├── lato-light-webfont.svg
│ │ ├── lato-light-webfont.ttf
│ │ ├── lato-light-webfont.woff
│ │ ├── lato-regular-webfont.eot
│ │ ├── lato-regular-webfont.svg
│ │ ├── lato-regular-webfont.ttf
│ │ └── lato-regular-webfont.woff
│ ├── img
│ │ ├── custom.png
│ │ └── service.png
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── bootstrap-select.js
│ │ ├── bootstrap-switch.js
│ │ ├── bootstrap-typeahead.js
│ │ ├── custom-ck.js
│ │ ├── custom.js
│ │ ├── datepicker.min.js
│ │ ├── flatui-checkbox.js
│ │ ├── flatui-radio.js
│ │ ├── html5shiv.js
│ │ ├── icon-font-ie7.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.11.3.min.js
│ │ ├── jquery-1.8.3.min.js
│ │ ├── jquery-2.0.3.min.js
│ │ ├── jquery-2.1.1.min.js
│ │ ├── jquery.fitvids.min.js
│ │ ├── jquery.isotope.min.js
│ │ ├── jquery.magnific-popup.js
│ │ ├── jquery.placeholder.js
│ │ ├── jquery.scrollTo.min.js
│ │ ├── jquery.singlePageNav.min.js
│ │ ├── jquery.tagsinput.js
│ │ ├── jquery-ui-1.10.3.custom.min.js
│ │ ├── jquery.ui.touch-punch.min.js
│ │ ├── landee.js
│ │ ├── plugins
│ │ │ ├── owl-carousel
│ │ │ │ ├── owl.carousel.js
│ │ │ │ └── owl.carousel.min.js
│ │ │ ├── parallax
│ │ │ │ ├── parallax.js
│ │ │ │ └── parallax.min.js
│ │ │ └── scrolling
│ │ │ ├── jquery.localscroll-1.2.7.js
│ │ │ ├── jquery.localscroll-1.2.7-min.js
│ │ │ ├── jquery.scrollTo-1.4.3.1.js
│ │ │ └── jquery.scrollTo-1.4.3.1-min.js
│ │ ├── popper.min.js
│ │ ├── index.php
│ │ ├── jquery.tweet.js
│ │ ├── jquery.tweet.min.js
│ │ └── lib
│ │ ├── tmhOAuth.php
│ │ └── tmhUtilities.php
│ ├── service
│ │ ├── Chat.aspx
│ │ └── Chat.aspx.cs
│ ├── ueditor
│ │ ├── dialogs
│ │ │ ├── anchor
│ │ │ │ └── anchor.html
│ │ │ ├── attachment
│ │ │ │ ├── attachment.css
│ │ │ │ ├── attachment.html
│ │ │ │ ├── attachment.js
│ │ │ │ ├── fileTypeImages
│ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ ├── icon_default.png
│ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ └── icon_xls.gif
│ │ │ │ └── images
│ │ │ │ ├── alignicon.gif
│ │ │ │ ├── alignicon.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── background
│ │ │ │ ├── background.css
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ └── images
│ │ │ │ ├── bg.png
│ │ │ │ └── success.png
│ │ │ ├── charts
│ │ │ │ ├── chart.config.js
│ │ │ │ ├── charts.css
│ │ │ │ ├── charts.html
│ │ │ │ ├── charts.js
│ │ │ │ └── images
│ │ │ │ ├── charts0.png
│ │ │ │ ├── charts1.png
│ │ │ │ ├── charts2.png
│ │ │ │ ├── charts3.png
│ │ │ │ ├── charts4.png
│ │ │ │ └── charts5.png
│ │ │ ├── emotion
│ │ │ │ ├── emotion.css
│ │ │ │ ├── emotion.html
│ │ │ │ ├── emotion.js
│ │ │ │ └── images
│ │ │ │ ├── 0.gif
│ │ │ │ ├── bface.gif
│ │ │ │ ├── cface.gif
│ │ │ │ ├── fface.gif
│ │ │ │ ├── jxface2.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── tface.gif
│ │ │ │ ├── wface.gif
│ │ │ │ └── yface.gif
│ │ │ ├── gmap
│ │ │ │ └── gmap.html
│ │ │ ├── help
│ │ │ │ ├── help.css
│ │ │ │ ├── help.html
│ │ │ │ └── help.js
│ │ │ ├── image
│ │ │ │ ├── image.css
│ │ │ │ ├── image.html
│ │ │ │ ├── image.js
│ │ │ │ └── images
│ │ │ │ ├── alignicon.jpg
│ │ │ │ ├── bg.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── insertframe
│ │ │ │ └── insertframe.html
│ │ │ ├── internal.js
│ │ │ ├── link
│ │ │ │ └── link.html
│ │ │ ├── map
│ │ │ │ ├── map.html
│ │ │ │ └── show.html
│ │ │ ├── music
│ │ │ │ ├── music.css
│ │ │ │ ├── music.html
│ │ │ │ └── music.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scrawl
│ │ │ │ ├── images
│ │ │ │ │ ├── addimg.png
│ │ │ │ │ ├── brush.png
│ │ │ │ │ ├── delimgH.png
│ │ │ │ │ ├── delimg.png
│ │ │ │ │ ├── emptyH.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── eraser.png
│ │ │ │ │ ├── redoH.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── scaleH.png
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── size.png
│ │ │ │ │ ├── undoH.png
│ │ │ │ │ └── undo.png
│ │ │ │ ├── scrawl.css
│ │ │ │ ├── scrawl.html
│ │ │ │ └── scrawl.js
│ │ │ ├── searchreplace
│ │ │ │ ├── searchreplace.html
│ │ │ │ └── searchreplace.js
│ │ │ ├── snapscreen
│ │ │ │ └── snapscreen.html
│ │ │ ├── spechars
│ │ │ │ ├── spechars.html
│ │ │ │ └── spechars.js
│ │ │ ├── table
│ │ │ │ ├── dragicon.png
│ │ │ │ ├── edittable.css
│ │ │ │ ├── edittable.html
│ │ │ │ ├── edittable.js
│ │ │ │ ├── edittd.html
│ │ │ │ └── edittip.html
│ │ │ ├── template
│ │ │ │ ├── config.js
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── pre0.png
│ │ │ │ │ ├── pre1.png
│ │ │ │ │ ├── pre2.png
│ │ │ │ │ ├── pre3.png
│ │ │ │ │ └── pre4.png
│ │ │ │ ├── template.css
│ │ │ │ ├── template.html
│ │ │ │ └── template.js
│ │ │ ├── video
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── video.css
│ │ │ │ ├── video.html
│ │ │ │ └── video.js
│ │ │ ├── webapp
│ │ │ │ └── webapp.html
│ │ │ └── wordimage
│ │ │ ├── fClipboard_ueditor.swf
│ │ │ ├── imageUploader.swf
│ │ │ ├── tangram.js
│ │ │ ├── wordimage.html
│ │ │ └── wordimage.js
│ │ ├── index.html
│ │ ├── lang
│ │ │ ├── en
│ │ │ │ ├── en.js
│ │ │ │ └── images
│ │ │ │ ├── addimage.png
│ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ ├── background.png
│ │ │ │ ├── button.png
│ │ │ │ ├── copy.png
│ │ │ │ ├── deletedisable.png
│ │ │ │ ├── deleteenable.png
│ │ │ │ ├── listbackground.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ ├── rotateleftdisable.png
│ │ │ │ ├── rotateleftenable.png
│ │ │ │ ├── rotaterightdisable.png
│ │ │ │ ├── rotaterightenable.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn
│ │ │ ├── images
│ │ │ │ ├── copy.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn.js
│ │ ├── net
│ │ │ ├── App_Code
│ │ │ ├── Bin
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── config.json
│ │ │ ├── controller.ashx
│ │ │ ├── net.sln
│ │ │ ├── README.md
│ │ │ ├── upload
│ │ │ │ ├── file
│ │ │ │ └── image
│ │ │ └── Web.config
│ │ ├── themes
│ │ │ ├── default
│ │ │ │ ├── css
│ │ │ │ │ ├── ueditor.css
│ │ │ │ │ └── ueditor.min.css
│ │ │ │ ├── dialogbase.css
│ │ │ │ └── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── arrow.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── button-bg.gif
│ │ │ │ ├── cancelbutton.gif
│ │ │ │ ├── charts.png
│ │ │ │ ├── cursor_h.gif
│ │ │ │ ├── cursor_h.png
│ │ │ │ ├── cursor_v.gif
│ │ │ │ ├── cursor_v.png
│ │ │ │ ├── dialog-title-bg.png
│ │ │ │ ├── filescan.png
│ │ │ │ ├── highlighted.gif
│ │ │ │ ├── icons-all.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── loaderror.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── lock.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── pagebreak.gif
│ │ │ │ ├── scale.png
│ │ │ │ ├── sortable.png
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── sparator_v.png
│ │ │ │ ├── table-cell-align.png
│ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ ├── toolbar_bg.png
│ │ │ │ ├── unhighlighted.gif
│ │ │ │ ├── upload.png
│ │ │ │ ├── videologo.gif
│ │ │ │ ├── word.gif
│ │ │ │ └── wordpaste.png
│ │ │ └── iframe.css
│ │ ├── third-party
│ │ │ ├── codemirror
│ │ │ │ ├── codemirror.css
│ │ │ │ └── codemirror.js
│ │ │ ├── highcharts
│ │ │ │ ├── adapters
│ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ ├── highcharts.js
│ │ │ │ ├── highcharts-more.js
│ │ │ │ ├── highcharts-more.src.js
│ │ │ │ ├── highcharts.src.js
│ │ │ │ ├── modules
│ │ │ │ │ ├── annotations.js
│ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── data.src.js
│ │ │ │ │ ├── drilldown.js
│ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ ├── exporting.js
│ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ ├── funnel.js
│ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ ├── heatmap.js
│ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ ├── map.js
│ │ │ │ │ ├── map.src.js
│ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ └── themes
│ │ │ │ ├── dark-blue.js
│ │ │ │ ├── dark-green.js
│ │ │ │ ├── gray.js
│ │ │ │ ├── grid.js
│ │ │ │ └── skies.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── jquery-1.10.2.min.map
│ │ │ ├── snapscreen
│ │ │ │ └── UEditorSnapscreen.exe
│ │ │ ├── SyntaxHighlighter
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ └── shCore.js
│ │ │ ├── video-js
│ │ │ │ ├── font
│ │ │ │ │ ├── vjs.eot
│ │ │ │ │ ├── vjs.svg
│ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ └── vjs.woff
│ │ │ │ ├── video.dev.js
│ │ │ │ ├── video.js
│ │ │ │ ├── video-js.css
│ │ │ │ ├── video-js.min.css
│ │ │ │ └── video-js.swf
│ │ │ ├── webuploader
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.custom.js
│ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ ├── webuploader.html5only.js
│ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ ├── webuploader.js
│ │ │ │ ├── webuploader.min.js
│ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ └── zeroclipboard
│ │ │ ├── ZeroClipboard.js
│ │ │ ├── ZeroClipboard.min.js
│ │ │ └── ZeroClipboard.swf
│ │ ├── ueditor.all.js
│ │ ├── ueditor.all.min.js
│ │ ├── ueditor.config.js
│ │ ├── ueditor.parse.js
│ │ └── ueditor.parse.min.js
│ ├── upload
│ │ ├── file
│ │ │ ├── 20180511
│ │ │ │ ├── 636616407896036699
│ │ │ │ │ └── admin.png
│ │ │ │ ├── 636616413990965309
│ │ │ │ │ └── 下载.jpg
│ │ │ │ ├── 636616413990975309
│ │ │ │ │ └── admin.png
│ │ │ │ ├── 636616548172650062
│ │ │ │ │ └── admin.png
│ │ │ │ └── 636616549738289612
│ │ │ │ └── admin.png
│ │ │ ├── 20180514
│ │ │ │ ├── 636618893594257530
│ │ │ │ │ └── e7cd7b899e510fb3be1e68aad233c895d1430c83.jpg
│ │ │ │ ├── 636619052783739457
│ │ │ │ │ └── u=4075442526,956047634&fm=202.jpg
│ │ │ │ ├── 636619101052700283
│ │ │ │ │ └── 未标题-1.png
│ │ │ │ └── 636619118917842111
│ │ │ │ └── faico.png
│ │ │ ├── 20180516
│ │ │ │ ├── 636620576874942510
│ │ │ │ │ └── 财务审计.jpg
│ │ │ │ ├── 636620622497141951
│ │ │ │ │ └── sj.png
│ │ │ │ └── 636620624761581469
│ │ │ │ └── u=4075442526,956047634&fm=202.jpg
│ │ │ ├── 20180518
│ │ │ │ ├── 636622368600945548
│ │ │ │ │ └── 下载.jpg
│ │ │ │ └── 636622368777535648
│ │ │ │ └── u=2723954543,1391434592&fm=27&gp=0.jpg
│ │ │ └── 20180521
│ │ │ └── 636624960023179298
│ │ │ └── 新建 Microsoft Excel 工作表.xlsx
│ │ └── image
│ │ ├── 20180518
│ │ │ └── 6366226127147580595080889.png
│ │ └── 20180521
│ │ └── 6366249604492036656587606.png
│ └── webservice
│ └── WebService.asmx
├── WEB - chat
│ ├── anchorManager
│ │ ├── ascx
│ │ │ ├── footer.ascx
│ │ │ ├── footer.ascx.cs
│ │ │ ├── header.ascx
│ │ │ ├── header.ascx.cs
│ │ │ ├── menu.ascx
│ │ │ ├── menu.ascx.cs
│ │ │ ├── top.ascx
│ │ │ └── top.ascx.cs
│ │ ├── Chat.aspx
│ │ ├── Chat.aspx.cs
│ │ ├── css
│ │ │ ├── atlas.css
│ │ │ ├── bars.css
│ │ │ ├── bootstrap-markdown.min.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── chocolat.css
│ │ │ ├── clndr.css
│ │ │ ├── fabochart.css
│ │ │ ├── font-awesome.css
│ │ │ ├── icon-font.min.css
│ │ │ ├── jqvmap.css
│ │ │ ├── popuo-box.css
│ │ │ ├── style.css
│ │ │ └── vroom.css
│ │ ├── fonts
│ │ │ ├── digital-7_italic-webfont.eot
│ │ │ ├── digital-7_italic-webfont.svg
│ │ │ ├── digital-7_italic-webfont.ttf
│ │ │ ├── digital-7_italic-webfont.woff
│ │ │ ├── digital-7_mono-webfont.eot
│ │ │ ├── digital-7_mono-webfont.svg
│ │ │ ├── digital-7_mono-webfont.ttf
│ │ │ ├── digital-7_mono-webfont.woff
│ │ │ ├── digital-7-webfont.eot
│ │ │ ├── digital-7-webfont.svg
│ │ │ ├── digital-7-webfont.ttf
│ │ │ ├── digital-7-webfont.woff
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ ├── weathericons-regular-webfont.eot
│ │ │ ├── weathericons-regular-webfont.svg
│ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ └── weathericons-regular-webfont.woff
│ │ ├── images
│ │ │ ├── 1.jpg
│ │ │ ├── 1.png
│ │ │ ├── 2222.png
│ │ │ ├── 2.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 5.png
│ │ │ ├── admin1.jpg
│ │ │ ├── admin2.jpg
│ │ │ ├── admin3.jpg
│ │ │ ├── admin.jpg
│ │ │ ├── admin.png
│ │ │ ├── alarm.png
│ │ │ ├── business-1031754_640.jpg
│ │ │ ├── clockface.png
│ │ │ ├── closew.gif
│ │ │ ├── cross.png
│ │ │ ├── fb.png
│ │ │ ├── hourhand.png
│ │ │ ├── icons.png
│ │ │ ├── in10.jpg
│ │ │ ├── in11.jpg
│ │ │ ├── in1.jpg
│ │ │ ├── in2.jpg
│ │ │ ├── in3.jpg
│ │ │ ├── in4.jpg
│ │ │ ├── in5.jpg
│ │ │ ├── in6.jpg
│ │ │ ├── in7.jpg
│ │ │ ├── in8.jpg
│ │ │ ├── in9.jpg
│ │ │ ├── in.jpg
│ │ │ ├── leftw.gif
│ │ │ ├── minhand.png
│ │ │ ├── p1.jpg
│ │ │ ├── p2.jpg
│ │ │ ├── p3.jpg
│ │ │ ├── p4.jpg
│ │ │ ├── p5.jpg
│ │ │ ├── p6.jpg
│ │ │ ├── pic3.jpg
│ │ │ ├── right_arrow.png
│ │ │ ├── rightw.gif
│ │ │ ├── search2.png
│ │ │ ├── search.png
│ │ │ ├── sechand.png
│ │ │ ├── social.png
│ │ │ ├── speed.png
│ │ │ ├── tick1.png
│ │ │ ├── time.png
│ │ │ ├── timer.png
│ │ │ ├── tw.png
│ │ │ └── watch.png
│ │ ├── js
│ │ │ ├── amcharts.js
│ │ │ ├── arbor.js
│ │ │ ├── atlas.js
│ │ │ ├── barChart.jquery.js
│ │ │ ├── bootstrap-markdown.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── cbpFWTabs.js
│ │ │ ├── Chart.js
│ │ │ ├── Chart-pie.js
│ │ │ ├── clndr.js
│ │ │ ├── css3clock.js
│ │ │ ├── CSSPlugin.min.js
│ │ │ ├── datamaps-all.js
│ │ │ ├── dygraph-combined.js
│ │ │ ├── fabochart.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── jquery.chocolat.js
│ │ │ ├── jquery.nicescroll.js
│ │ │ ├── jquery.vmap.js
│ │ │ ├── jquery.vmap.sampledata.js
│ │ │ ├── jquery.vmap.world.js
│ │ │ ├── light.js
│ │ │ ├── map.js
│ │ │ ├── modernizr.custom.04022.js
│ │ │ ├── moment-2.2.1.js
│ │ │ ├── protovis-d3.2.js
│ │ │ ├── radar.js
│ │ │ ├── responsiveslides.min.js
│ │ │ ├── scripts.js
│ │ │ ├── serial.js
│ │ │ ├── site.js
│ │ │ ├── skycons.js
│ │ │ ├── TweenLite.min.js
│ │ │ ├── underscore-min.js
│ │ │ ├── vix.js
│ │ │ └── vroom.js
│ │ ├── login.aspx
│ │ ├── login.aspx.cs
│ │ ├── login.html
│ │ └── maps
│ │ ├── africa.json
│ │ ├── america.json
│ │ ├── asia.json
│ │ ├── europe.json
│ │ ├── mideast.json
│ │ ├── risk.json
│ │ └── usofa.json
│ ├── app_code
│ │ ├── ComFunc.cs
│ │ ├── Config.cs
│ │ ├── ConfigHandler.cs
│ │ ├── CrawlerHandler.cs
│ │ ├── FilesManager.cs
│ │ ├── Handler.cs
│ │ ├── ImgHelper.cs
│ │ ├── js.cs
│ │ ├── ListFileHandler.cs
│ │ ├── myString.cs
│ │ ├── NotSupportedHandler.cs
│ │ ├── PathFormater.cs
│ │ ├── SQLHelper.cs
│ │ ├── UploadHandler.cs
│ │ ├── User.cs
│ │ └── WebService.cs
│ ├── ascx
│ │ ├── foot.ascx
│ │ ├── foot.ascx.cs
│ │ ├── footCss.ascx
│ │ ├── footCss.ascx.cs
│ │ ├── head.ascx
│ │ ├── head.ascx.cs
│ │ ├── ueditor.ascx
│ │ ├── ueditor.ascx.cs
│ │ ├── uploadfiles.ascx
│ │ └── uploadfiles.ascx.cs
│ ├── aspnet_client
│ │ └── system_web
│ │ └── 4_0_30319
│ ├── assets
│ │ ├── bxslider
│ │ │ ├── images
│ │ │ │ ├── bx_loader.gif
│ │ │ │ ├── left-hover.png
│ │ │ │ ├── left.png
│ │ │ │ ├── right-hover.png
│ │ │ │ └── right.png
│ │ │ ├── jquery.bxslider.css
│ │ │ ├── jquery.bxslider.js
│ │ │ └── jquery.bxslider.min.js
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ ├── less
│ │ │ │ ├── bordered-pulled.less
│ │ │ │ ├── core.less
│ │ │ │ ├── fixed-width.less
│ │ │ │ ├── font-awesome.less
│ │ │ │ ├── icons.less
│ │ │ │ ├── larger.less
│ │ │ │ ├── list.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── path.less
│ │ │ │ ├── rotated-flipped.less
│ │ │ │ ├── spinning.less
│ │ │ │ ├── stacked.less
│ │ │ │ └── variables.less
│ │ │ └── scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _core.scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── font-awesome.scss
│ │ │ ├── _icons.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _list.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _path.scss
│ │ │ ├── _rotated-flipped.scss
│ │ │ ├── _spinning.scss
│ │ │ ├── _stacked.scss
│ │ │ └── _variables.scss
│ │ └── owlcarousel
│ │ ├── owl.carousel.css
│ │ ├── owl.carousel.js
│ │ └── owl.theme.css
│ ├── Bin
│ │ ├── AspNetPager.dll
│ │ ├── AspNetPager.dll.refresh
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.dll.refresh
│ │ └── Newtonsoft.Json.xml
│ ├── css
│ │ ├── animate.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-reset.css
│ │ ├── bootstrap-responsive.css
│ │ ├── bootstrap-responsive.min.css
│ │ ├── bootstrap-select.css
│ │ ├── bootstrap-social.css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bwizard.min.css
│ │ ├── component.css
│ │ ├── custom.css
│ │ ├── datepicker.css
│ │ ├── demo.css
│ │ ├── flat-ui.css
│ │ ├── flexslider.css
│ │ ├── magnific-popup.css
│ │ ├── main.css
│ │ ├── mixitup.css
│ │ ├── modals.less
│ │ ├── parallax-slider
│ │ │ └── parallax-slider.css
│ │ ├── seq-slider
│ │ │ ├── apple-style
│ │ │ │ ├── apple-style
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── sequencejs-theme.apple-style.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── bg-controls.png
│ │ │ │ │ │ ├── bt-next.png
│ │ │ │ │ │ ├── bt-pause.png
│ │ │ │ │ │ ├── bt-play.png
│ │ │ │ │ │ ├── bt-prev.png
│ │ │ │ │ │ ├── ipad.png
│ │ │ │ │ │ ├── ipad-shadow.png
│ │ │ │ │ │ ├── iphone.png
│ │ │ │ │ │ ├── iphone-shadow.png
│ │ │ │ │ │ ├── pause-icon.png
│ │ │ │ │ │ ├── sequence-logo.png
│ │ │ │ │ │ └── status-bar.png
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── scripts
│ │ │ │ │ │ ├── jquery.ba-hashchange.min.js
│ │ │ │ │ │ ├── jquery.js
│ │ │ │ │ │ ├── jquery-min.js
│ │ │ │ │ │ ├── jquery.sequence.js
│ │ │ │ │ │ └── jquery.sequence-min.js
│ │ │ │ │ ├── scss
│ │ │ │ │ │ ├── partials
│ │ │ │ │ │ │ ├── mixins.scss
│ │ │ │ │ │ │ └── reset.scss
│ │ │ │ │ │ └── sequencejs-theme.apple-style.scss
│ │ │ │ │ └── sequencejs-options.apple-style.js
│ │ │ │ ├── license-free-theme.txt
│ │ │ │ ├── __MACOSX
│ │ │ │ │ └── apple-style
│ │ │ │ │ ├── css
│ │ │ │ │ ├── images
│ │ │ │ │ ├── scripts
│ │ │ │ │ └── scss
│ │ │ │ ├── readme-free.txt
│ │ │ │ ├── release-history.txt
│ │ │ │ └── sequence-apple-style.jpg
│ │ │ ├── sequencejs-theme.apple-style.css
│ │ │ ├── sequencejs-theme.modern-slide-in.css
│ │ │ └── sequencejs-theme.sliding-horizontal-parallax.css
│ │ ├── style.css
│ │ ├── style-responsive.css
│ │ ├── StyleSheet.css
│ │ ├── superfish.css
│ │ ├── superfish-vertical.css
│ │ ├── templatemo-style.css
│ │ └── theme.css
│ ├── favicon.ico
│ ├── font-awesome-4.7.0
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ └── HELP-US-OUT.txt
│ ├── fonts
│ │ ├── booom.eot
│ │ ├── booom.svg
│ │ ├── booom.ttf
│ │ ├── booom.woff
│ │ ├── Flat-UI-Icons.dev.svg
│ │ ├── Flat-UI-Icons.eot
│ │ ├── Flat-UI-Icons.svg
│ │ ├── Flat-UI-Icons.ttf
│ │ ├── Flat-UI-Icons.woff
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── icomoon-session.json
│ │ └── lato
│ │ ├── lato-black-webfont.eot
│ │ ├── lato-black-webfont.svg
│ │ ├── lato-black-webfont.ttf
│ │ ├── lato-black-webfont.woff
│ │ ├── lato-bolditalic-webfont.eot
│ │ ├── lato-bolditalic-webfont.svg
│ │ ├── lato-bolditalic-webfont.ttf
│ │ ├── lato-bolditalic-webfont.woff
│ │ ├── lato-bold-webfont.eot
│ │ ├── lato-bold-webfont.svg
│ │ ├── lato-bold-webfont.ttf
│ │ ├── lato-bold-webfont.woff
│ │ ├── lato-italic-webfont.eot
│ │ ├── lato-italic-webfont.svg
│ │ ├── lato-italic-webfont.ttf
│ │ ├── lato-italic-webfont.woff
│ │ ├── lato-light-webfont.eot
│ │ ├── lato-light-webfont.svg
│ │ ├── lato-light-webfont.ttf
│ │ ├── lato-light-webfont.woff
│ │ ├── lato-regular-webfont.eot
│ │ ├── lato-regular-webfont.svg
│ │ ├── lato-regular-webfont.ttf
│ │ └── lato-regular-webfont.woff
│ ├── img
│ │ ├── 1525944459.png
│ │ ├── 1528356238.png
│ │ ├── 1.jpg
│ │ ├── 1.png
│ │ ├── 2.jpg
│ │ ├── 2.png
│ │ ├── 3.jpg
│ │ ├── 3.png
│ │ ├── audit_s.png
│ │ ├── banner
│ │ ├── banner.jpg
│ │ ├── bg_direction_nav.png
│ │ ├── blog
│ │ │ ├── blog-thumb-1.jpg
│ │ │ ├── blog-thumb-2.jpg
│ │ │ ├── blog-thumb-3.jpg
│ │ │ ├── img3.jpg
│ │ │ ├── img4.jpg
│ │ │ ├── img5.jpg
│ │ │ ├── img6.jpg
│ │ │ ├── img71.jpg
│ │ │ ├── img7.jpg
│ │ │ └── img8.jpg
│ │ ├── clients
│ │ │ ├── graylogo6.png
│ │ │ └── newlogo6.png
│ │ ├── custom.png
│ │ ├── dots-3.png
│ │ ├── feature.png
│ │ ├── icon-location.png
│ │ ├── icon-miss.png
│ │ ├── icon-phone.png
│ │ ├── icon-skype.png
│ │ ├── ipadwhite.png
│ │ ├── link-icon.png
│ │ ├── logo.png
│ │ ├── mob1.png
│ │ ├── nbg.jpg
│ │ ├── oa_s.png
│ │ ├── other_s.png
│ │ ├── parallax-slider
│ │ │ └── images
│ │ │ ├── 12.png
│ │ │ ├── 1.png
│ │ │ ├── 21.png
│ │ │ ├── 2.png
│ │ │ ├── 31.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── arrows.png
│ │ │ ├── bg.png
│ │ │ ├── ImageAttribution.txt
│ │ │ ├── main-bg1.jpg
│ │ │ ├── main-bg2.jpg
│ │ │ ├── main-bg.jpg
│ │ │ └── waves.gif
│ │ ├── person_1.png
│ │ ├── person_2.png
│ │ ├── person_3.png
│ │ ├── portfolios
│ │ │ ├── app
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ └── 5.jpg
│ │ │ ├── card
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ └── 4.jpg
│ │ │ ├── icon
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ └── 5.jpg
│ │ │ ├── logo
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 5.jpg
│ │ │ │ ├── 6.jpg
│ │ │ │ └── 7.jpg
│ │ │ └── web
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ └── 4.jpg
│ │ ├── product1.jpg
│ │ ├── product2.jpg
│ │ ├── product_demo.jpg
│ │ ├── search-icon.jpg
│ │ ├── search-icon.png
│ │ ├── seq-slider
│ │ │ ├── abstract-16729_1920.jpg
│ │ │ ├── aeroplane.png
│ │ │ ├── balloon.png
│ │ │ ├── bg-clouds.png
│ │ │ ├── bg-controls.png
│ │ │ ├── bg-sky.png
│ │ │ ├── bt-next-a.png
│ │ │ ├── bt-next-gr.png
│ │ │ ├── bt-next.png
│ │ │ ├── bt-pause.png
│ │ │ ├── bt-play.png
│ │ │ ├── bt-prev-a.png
│ │ │ ├── bt-prev-gr.png
│ │ │ ├── bt-prev.png
│ │ │ ├── ipad2.png
│ │ │ ├── ipad_demo.png
│ │ │ ├── ipad.png
│ │ │ ├── ipad-shadow.png
│ │ │ ├── iphone_demo.png
│ │ │ ├── iphone.png
│ │ │ ├── iphone-shadow.png
│ │ │ ├── kite.png
│ │ │ ├── pause-icon.png
│ │ │ ├── sequence-logo.png
│ │ │ └── status-bar.png
│ │ ├── service1.jpg
│ │ ├── service2.jpg
│ │ ├── service3.jpg
│ │ ├── service4.jpg
│ │ ├── service5.jpg
│ │ ├── service.png
│ │ ├── tab1.png
│ │ ├── team
│ │ │ ├── bg.png
│ │ │ ├── member1.jpg
│ │ │ ├── member2.jpg
│ │ │ ├── member3.jpg
│ │ │ ├── member4.jpg
│ │ │ └── placeholder.gif
│ │ ├── testimonial-author2.png
│ │ ├── testimonial-author3.png
│ │ ├── testimonial-author.png
│ │ ├── tg-black-bg.png
│ │ ├── triangle.png
│ │ ├── works
│ │ │ ├── img10.jpg
│ │ │ ├── img11.jpg
│ │ │ ├── img12.jpg
│ │ │ ├── img13.jpg
│ │ │ ├── img8.jpg
│ │ │ └── img9.jpg
│ │ └── wx.png
│ ├── index.aspx
│ ├── index.aspx.cs
│ ├── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── bootstrap-select.js
│ │ ├── bootstrap-select.min.js
│ │ ├── bootstrap-switch.js
│ │ ├── bootstrap-typeahead.js
│ │ ├── bwizard.min.js
│ │ ├── common-scripts.js
│ │ ├── custom-ck.js
│ │ ├── custom.js
│ │ ├── datepicker.min.js
│ │ ├── flatui-checkbox.js
│ │ ├── flatui-radio.js
│ │ ├── hover-dropdown.js
│ │ ├── html5shiv.js
│ │ ├── icon-font-ie7.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.11.3.min.js
│ │ ├── jquery-1.8.3.min.js
│ │ ├── jquery-2.0.3.min.js
│ │ ├── jquery-2.1.1.min.js
│ │ ├── jquery.easing.min.js
│ │ ├── jquery.fitvids.min.js
│ │ ├── jquery.flexslider.js
│ │ ├── jquery.isotope.min.js
│ │ ├── jquery.js
│ │ ├── jquery.magnific-popup.js
│ │ ├── jquery.parallax-1.1.3.js
│ │ ├── jquery.placeholder.js
│ │ ├── jquery.scrollTo.min.js
│ │ ├── jquery.singlePageNav.min.js
│ │ ├── jquery.tagsinput.js
│ │ ├── jquery-ui-1.10.3.custom.min.js
│ │ ├── jquery-ui-1.9.2.custom.min.js
│ │ ├── jquery.ui.touch-punch.min.js
│ │ ├── landee.js
│ │ ├── link-hover.js
│ │ ├── mixitup.js
│ │ ├── parallax-slider
│ │ │ ├── jquery.cslider.js
│ │ │ └── modernizr.custom.28468.js
│ │ ├── plugins
│ │ │ ├── owl-carousel
│ │ │ │ ├── owl.carousel.js
│ │ │ │ └── owl.carousel.min.js
│ │ │ ├── parallax
│ │ │ │ ├── parallax.js
│ │ │ │ └── parallax.min.js
│ │ │ └── scrolling
│ │ │ ├── jquery.localscroll-1.2.7.js
│ │ │ ├── jquery.localscroll-1.2.7-min.js
│ │ │ ├── jquery.scrollTo-1.4.3.1.js
│ │ │ └── jquery.scrollTo-1.4.3.1-min.js
│ │ ├── popper.min.js
│ │ ├── seq-slider
│ │ │ ├── jquery.ba-hashchange.min.js
│ │ │ ├── jquery.sequence.js
│ │ │ ├── jquery.sequence-min.js
│ │ │ ├── sequencejs-options.apple-style.js
│ │ │ ├── sequencejs-options.modern-slide-in.js
│ │ │ └── sequencejs-options.sliding-horizontal-parallax.js
│ │ ├── superfish.js
│ │ │ ├── index.php
│ │ │ ├── jquery.tweet.js
│ │ │ ├── jquery.tweet.min.js
│ │ │ └── lib
│ │ │ ├── tmhOAuth.php
│ │ │ └── tmhUtilities.php
│ │ └── wow.min.js
│ ├── list_assets
│ │ ├── css
│ │ │ ├── admin.css
│ │ │ ├── amazeui.css
│ │ │ ├── amazeui.flat.css
│ │ │ ├── amazeui.flat.min.css
│ │ │ ├── amazeui.min.css
│ │ │ ├── app.css
│ │ │ └── lw-admin.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── i
│ │ │ ├── app-icon72x72@2x.png
│ │ │ ├── b1.jpg
│ │ │ ├── b2.jpg
│ │ │ ├── b3.jpg
│ │ │ ├── examples
│ │ │ │ ├── admin-chrome.png
│ │ │ │ ├── admin-firefox.png
│ │ │ │ ├── admin-ie.png
│ │ │ │ ├── admin-opera.png
│ │ │ │ ├── adminPage.png
│ │ │ │ ├── admin-safari.png
│ │ │ │ ├── blogPage.png
│ │ │ │ ├── landingPage.png
│ │ │ │ ├── landing.png
│ │ │ │ ├── loginPage.png
│ │ │ │ └── sidebarPage.png
│ │ │ ├── f10.jpg
│ │ │ ├── f12.jpg
│ │ │ ├── f13.jpg
│ │ │ ├── f14.jpg
│ │ │ ├── f15.jpg
│ │ │ ├── f161.jpg
│ │ │ ├── f16.jpeg
│ │ │ ├── f16.jpg
│ │ │ ├── f17.jpg
│ │ │ ├── f18.jpg
│ │ │ ├── f19.jpg
│ │ │ ├── f20.jpg
│ │ │ ├── f22.jpg
│ │ │ ├── f4.png
│ │ │ ├── f5.jpg
│ │ │ ├── f6.jpg
│ │ │ ├── f7.jpg
│ │ │ ├── f8.jpg
│ │ │ ├── favicon.png
│ │ │ └── startup-640x1096.png
│ │ └── js
│ │ ├── amazeui.ie8polyfill.js
│ │ ├── amazeui.ie8polyfill.min.js
│ │ ├── amazeui.js
│ │ ├── amazeui.min.js
│ │ ├── amazeui.widgets.helper.js
│ │ ├── amazeui.widgets.helper.min.js
│ │ ├── app.js
│ │ ├── handlebars.min.js
│ │ ├── img.js
│ │ ├── jquery.min.js
│ │ ├── jquery.waterfall.min.js
│ │ └── pinto.min.js
│ ├── localhost_8001.sln
│ ├── localhost_8001.v12.suo
│ ├── slick
│ │ ├── ajax-loader.gif
│ │ ├── config.rb
│ │ ├── fonts
│ │ │ ├── slick.eot
│ │ │ ├── slick.svg
│ │ │ ├── slick.ttf
│ │ │ └── slick.woff
│ │ ├── slick.css
│ │ ├── slick.js
│ │ ├── slick.less
│ │ ├── slick.min.js
│ │ ├── slick.scss
│ │ ├── slick-theme.css
│ │ ├── slick-theme.less
│ │ └── slick-theme.scss
│ ├── ueditor
│ │ ├── dialogs
│ │ │ ├── anchor
│ │ │ │ └── anchor.html
│ │ │ ├── attachment
│ │ │ │ ├── attachment.css
│ │ │ │ ├── attachment.html
│ │ │ │ ├── attachment.js
│ │ │ │ ├── fileTypeImages
│ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ ├── icon_default.png
│ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ └── icon_xls.gif
│ │ │ │ └── images
│ │ │ │ ├── alignicon.gif
│ │ │ │ ├── alignicon.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── file-icons.gif
│ │ │ │ ├── file-icons.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── background
│ │ │ │ ├── background.css
│ │ │ │ ├── background.html
│ │ │ │ ├── background.js
│ │ │ │ └── images
│ │ │ │ ├── bg.png
│ │ │ │ └── success.png
│ │ │ ├── charts
│ │ │ │ ├── chart.config.js
│ │ │ │ ├── charts.css
│ │ │ │ ├── charts.html
│ │ │ │ ├── charts.js
│ │ │ │ └── images
│ │ │ │ ├── charts0.png
│ │ │ │ ├── charts1.png
│ │ │ │ ├── charts2.png
│ │ │ │ ├── charts3.png
│ │ │ │ ├── charts4.png
│ │ │ │ └── charts5.png
│ │ │ ├── emotion
│ │ │ │ ├── emotion.css
│ │ │ │ ├── emotion.html
│ │ │ │ ├── emotion.js
│ │ │ │ └── images
│ │ │ │ ├── 0.gif
│ │ │ │ ├── bface.gif
│ │ │ │ ├── cface.gif
│ │ │ │ ├── fface.gif
│ │ │ │ ├── jxface2.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── tface.gif
│ │ │ │ ├── wface.gif
│ │ │ │ └── yface.gif
│ │ │ ├── gmap
│ │ │ │ └── gmap.html
│ │ │ ├── help
│ │ │ │ ├── help.css
│ │ │ │ ├── help.html
│ │ │ │ └── help.js
│ │ │ ├── image
│ │ │ │ ├── image.css
│ │ │ │ ├── image.html
│ │ │ │ ├── image.js
│ │ │ │ └── images
│ │ │ │ ├── alignicon.jpg
│ │ │ │ ├── bg.png
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── image.png
│ │ │ │ ├── progress.png
│ │ │ │ ├── success.gif
│ │ │ │ └── success.png
│ │ │ ├── insertframe
│ │ │ │ └── insertframe.html
│ │ │ ├── internal.js
│ │ │ ├── link
│ │ │ │ └── link.html
│ │ │ ├── map
│ │ │ │ ├── map.html
│ │ │ │ └── show.html
│ │ │ ├── music
│ │ │ │ ├── music.css
│ │ │ │ ├── music.html
│ │ │ │ └── music.js
│ │ │ ├── preview
│ │ │ │ └── preview.html
│ │ │ ├── scrawl
│ │ │ │ ├── images
│ │ │ │ │ ├── addimg.png
│ │ │ │ │ ├── brush.png
│ │ │ │ │ ├── delimgH.png
│ │ │ │ │ ├── delimg.png
│ │ │ │ │ ├── emptyH.png
│ │ │ │ │ ├── empty.png
│ │ │ │ │ ├── eraser.png
│ │ │ │ │ ├── redoH.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── scaleH.png
│ │ │ │ │ ├── scale.png
│ │ │ │ │ ├── size.png
│ │ │ │ │ ├── undoH.png
│ │ │ │ │ └── undo.png
│ │ │ │ ├── scrawl.css
│ │ │ │ ├── scrawl.html
│ │ │ │ └── scrawl.js
│ │ │ ├── searchreplace
│ │ │ │ ├── searchreplace.html
│ │ │ │ └── searchreplace.js
│ │ │ ├── snapscreen
│ │ │ │ └── snapscreen.html
│ │ │ ├── spechars
│ │ │ │ ├── spechars.html
│ │ │ │ └── spechars.js
│ │ │ ├── table
│ │ │ │ ├── dragicon.png
│ │ │ │ ├── edittable.css
│ │ │ │ ├── edittable.html
│ │ │ │ ├── edittable.js
│ │ │ │ ├── edittd.html
│ │ │ │ └── edittip.html
│ │ │ ├── template
│ │ │ │ ├── config.js
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── pre0.png
│ │ │ │ │ ├── pre1.png
│ │ │ │ │ ├── pre2.png
│ │ │ │ │ ├── pre3.png
│ │ │ │ │ └── pre4.png
│ │ │ │ ├── template.css
│ │ │ │ ├── template.html
│ │ │ │ └── template.js
│ │ │ ├── video
│ │ │ │ ├── images
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ ├── file-icons.png
│ │ │ │ │ ├── icons.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── image.png
│ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ ├── progress.png
│ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ ├── success.gif
│ │ │ │ │ └── success.png
│ │ │ │ ├── video.css
│ │ │ │ ├── video.html
│ │ │ │ └── video.js
│ │ │ ├── webapp
│ │ │ │ └── webapp.html
│ │ │ └── wordimage
│ │ │ ├── fClipboard_ueditor.swf
│ │ │ ├── imageUploader.swf
│ │ │ ├── tangram.js
│ │ │ ├── wordimage.html
│ │ │ └── wordimage.js
│ │ ├── index.html
│ │ ├── lang
│ │ │ ├── en
│ │ │ │ ├── en.js
│ │ │ │ └── images
│ │ │ │ ├── addimage.png
│ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ ├── background.png
│ │ │ │ ├── button.png
│ │ │ │ ├── copy.png
│ │ │ │ ├── deletedisable.png
│ │ │ │ ├── deleteenable.png
│ │ │ │ ├── listbackground.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ ├── rotateleftdisable.png
│ │ │ │ ├── rotateleftenable.png
│ │ │ │ ├── rotaterightdisable.png
│ │ │ │ ├── rotaterightenable.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn
│ │ │ ├── images
│ │ │ │ ├── copy.png
│ │ │ │ ├── localimage.png
│ │ │ │ ├── music.png
│ │ │ │ └── upload.png
│ │ │ └── zh-cn.js
│ │ ├── net
│ │ │ ├── App_Code
│ │ │ ├── Bin
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── config.json
│ │ │ ├── controller.ashx
│ │ │ ├── d1c5ed4f-bf8a-4fb2-be27-4bc6429456b4.jpg
│ │ │ ├── net.sln
│ │ │ ├── README.md
│ │ │ ├── upload
│ │ │ │ ├── file
│ │ │ │ └── image
│ │ │ └── Web.config
│ │ ├── themes
│ │ │ ├── default
│ │ │ │ ├── css
│ │ │ │ │ ├── ueditor.css
│ │ │ │ │ └── ueditor.min.css
│ │ │ │ ├── dialogbase.css
│ │ │ │ └── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── arrow.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── button-bg.gif
│ │ │ │ ├── cancelbutton.gif
│ │ │ │ ├── charts.png
│ │ │ │ ├── cursor_h.gif
│ │ │ │ ├── cursor_h.png
│ │ │ │ ├── cursor_v.gif
│ │ │ │ ├── cursor_v.png
│ │ │ │ ├── dialog-title-bg.png
│ │ │ │ ├── filescan.png
│ │ │ │ ├── highlighted.gif
│ │ │ │ ├── icons-all.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── icons.png
│ │ │ │ ├── loaderror.png
│ │ │ │ ├── loading.gif
│ │ │ │ ├── lock.gif
│ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ ├── pagebreak.gif
│ │ │ │ ├── scale.png
│ │ │ │ ├── sortable.png
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── sparator_v.png
│ │ │ │ ├── table-cell-align.png
│ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ ├── toolbar_bg.png
│ │ │ │ ├── unhighlighted.gif
│ │ │ │ ├── upload.png
│ │ │ │ ├── videologo.gif
│ │ │ │ ├── word.gif
│ │ │ │ └── wordpaste.png
│ │ │ └── iframe.css
│ │ ├── third-party
│ │ │ ├── codemirror
│ │ │ │ ├── codemirror.css
│ │ │ │ └── codemirror.js
│ │ │ ├── highcharts
│ │ │ │ ├── adapters
│ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ ├── highcharts.js
│ │ │ │ ├── highcharts-more.js
│ │ │ │ ├── highcharts-more.src.js
│ │ │ │ ├── highcharts.src.js
│ │ │ │ ├── modules
│ │ │ │ │ ├── annotations.js
│ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ ├── data.js
│ │ │ │ │ ├── data.src.js
│ │ │ │ │ ├── drilldown.js
│ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ ├── exporting.js
│ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ ├── funnel.js
│ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ ├── heatmap.js
│ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ ├── map.js
│ │ │ │ │ ├── map.src.js
│ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ └── themes
│ │ │ │ ├── dark-blue.js
│ │ │ │ ├── dark-green.js
│ │ │ │ ├── gray.js
│ │ │ │ ├── grid.js
│ │ │ │ └── skies.js
│ │ │ ├── jquery-1.10.2.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── jquery-1.10.2.min.map
│ │ │ ├── snapscreen
│ │ │ │ └── UEditorSnapscreen.exe
│ │ │ ├── SyntaxHighlighter
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ └── shCore.js
│ │ │ ├── video-js
│ │ │ │ ├── font
│ │ │ │ │ ├── vjs.eot
│ │ │ │ │ ├── vjs.svg
│ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ └── vjs.woff
│ │ │ │ ├── video.dev.js
│ │ │ │ ├── video.js
│ │ │ │ ├── video-js.css
│ │ │ │ ├── video-js.min.css
│ │ │ │ └── video-js.swf
│ │ │ ├── webuploader
│ │ │ │ ├── Uploader.swf
│ │ │ │ ├── webuploader.css
│ │ │ │ ├── webuploader.custom.js
│ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ ├── webuploader.html5only.js
│ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ ├── webuploader.js
│ │ │ │ ├── webuploader.min.js
│ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ └── zeroclipboard
│ │ │ ├── ZeroClipboard.js
│ │ │ ├── ZeroClipboard.min.js
│ │ │ └── ZeroClipboard.swf
│ │ ├── ueditor.all.js
│ │ ├── ueditor.all.min.js
│ │ ├── ueditor.config.js
│ │ ├── ueditor.parse.js
│ │ └── ueditor.parse.min.js
│ ├── upload
│ ├── web.config
│ ├── webservice
│ │ └── WebService.asmx
│ └── 说明.txt
├── winSocketClient
│ └── winSocketClient
│ ├── packages
│ │ ├── log4net.2.0.3
│ │ │ ├── lib
│ │ │ │ ├── net10-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net11-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net20-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net35-client
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net35-full
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ ├── net40-client
│ │ │ │ │ ├── log4net.dll
│ │ │ │ │ └── log4net.xml
│ │ │ │ └── net40-full
│ │ │ │ ├── log4net.dll
│ │ │ │ └── log4net.xml
│ │ │ └── log4net.2.0.3.nupkg
│ │ ├── Newtonsoft.Json.6.0.2
│ │ │ ├── lib
│ │ │ │ ├── net20
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── net35
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── net40
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── net45
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── netcore45
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ ├── portable-net40+sl5+wp80+win8+monotouch+monoandroid
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ └── Newtonsoft.Json.xml
│ │ │ │ └── portable-net45+wp80+win8+wpa81
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── Newtonsoft.Json.6.0.2.nupkg
│ │ │ └── tools
│ │ │ └── install.ps1
│ │ ├── repositories.config
│ │ ├── SuperSocket.ClientEngine.Core.0.10.0
│ │ │ ├── lib
│ │ │ │ ├── net20
│ │ │ │ │ └── SuperSocket.ClientEngine.dll
│ │ │ │ ├── net35-client
│ │ │ │ │ └── SuperSocket.ClientEngine.dll
│ │ │ │ ├── net40-client
│ │ │ │ │ └── SuperSocket.ClientEngine.dll
│ │ │ │ ├── net45
│ │ │ │ │ └── SuperSocket.ClientEngine.dll
│ │ │ │ ├── netstandard1.3
│ │ │ │ │ └── SuperSocket.ClientEngine.dll
│ │ │ │ └── sl50
│ │ │ │ └── SuperSocket.ClientEngine.dll
│ │ │ └── SuperSocket.ClientEngine.Core.0.10.0.nupkg
│ │ ├── SuperWebSocket.0.9.0.2
│ │ │ ├── lib
│ │ │ │ └── net40
│ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ ├── SuperSocket.Common.pdb
│ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ ├── SuperSocket.SocketBase.pdb
│ │ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ │ ├── SuperSocket.SocketEngine.pdb
│ │ │ │ ├── SuperWebSocket.dll
│ │ │ │ ├── SuperWebSocket.pdb
│ │ │ │ └── SuperWebSocket.XML
│ │ │ └── SuperWebSocket.0.9.0.2.nupkg
│ │ ├── SuperWebSocketNETServer.0.8
│ │ │ ├── lib
│ │ │ │ ├── net35
│ │ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ │ ├── SuperSocket.Facility.dll
│ │ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ │ │ └── SuperWebSocket.dll
│ │ │ │ ├── net40
│ │ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ │ ├── SuperSocket.Facility.dll
│ │ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ │ │ └── SuperWebSocket.dll
│ │ │ │ └── net45
│ │ │ │ ├── SuperSocket.Common.dll
│ │ │ │ ├── SuperSocket.Facility.dll
│ │ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ │ └── SuperWebSocket.dll
│ │ │ └── SuperWebSocketNETServer.0.8.nupkg
│ │ └── WebSocket4Net.0.15.2
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ └── WebSocket4Net.dll
│ │ │ ├── net35
│ │ │ │ └── WebSocket4Net.dll
│ │ │ ├── net40
│ │ │ │ └── WebSocket4Net.dll
│ │ │ ├── net45
│ │ │ │ └── WebSocket4Net.dll
│ │ │ └── netstandard1.3
│ │ │ └── WebSocket4Net.dll
│ │ └── WebSocket4Net.0.15.2.nupkg
│ ├── WinHtmlEditor
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── dic
│ │ │ │ │ └── en-US.dic
│ │ │ │ ├── NetSpell.SpellChecker.dll
│ │ │ │ ├── WinHtmlEditor.dll
│ │ │ │ └── WinHtmlEditor.pdb
│ │ │ ├── Debug_VS2010
│ │ │ │ ├── dic
│ │ │ │ │ └── en-US.dic
│ │ │ │ ├── Microsoft.mshtml.dll
│ │ │ │ ├── NetSpell.SpellChecker.dll
│ │ │ │ └── WinHtmlEditor.dll
│ │ │ ├── Release
│ │ │ │ ├── dic
│ │ │ │ │ └── en-US.dic
│ │ │ │ ├── Microsoft.mshtml.dll
│ │ │ │ ├── NetSpell.SpellChecker.dll
│ │ │ │ └── WinHtmlEditor.dll
│ │ │ └── Release_VS2010
│ │ │ ├── dic
│ │ │ │ └── en-US.dic
│ │ │ ├── Microsoft.mshtml.dll
│ │ │ ├── NetSpell.SpellChecker.dll
│ │ │ └── WinHtmlEditor.dll
│ │ ├── Common
│ │ │ ├── ContextMenuForm.cs
│ │ │ ├── ContextMenuForm.designer.cs
│ │ │ ├── ContextMenuForm.resx
│ │ │ ├── CustomColors.cs
│ │ │ ├── ExtensionAttribute.cs
│ │ │ ├── GeneralUtil.cs
│ │ │ ├── HTMLEditHelper.cs
│ │ │ ├── HtmlEditorEvents.cs
│ │ │ ├── HtmlEnumerations.cs
│ │ │ ├── HtmlFontProperty.cs
│ │ │ ├── HtmlTableProperty.cs
│ │ │ ├── IOleCommandTarget.cs
│ │ │ ├── OfficeColorPicker.cs
│ │ │ ├── OfficeColorPicker.designer.cs
│ │ │ ├── OfficeColorPicker.resx
│ │ │ ├── SelectableColor.cs
│ │ │ ├── TableSizeControl.cs
│ │ │ ├── ToolStripColorPicker.cs
│ │ │ ├── ToolStripColorPicker.resx
│ │ │ ├── ToolStripFontComboBox.cs
│ │ │ └── ToolStripTableSizeSelector.cs
│ │ ├── Form
│ │ │ ├── EditHtmlForm.cs
│ │ │ ├── EditHtmlForm.designer.cs
│ │ │ ├── EditHtmlForm.resx
│ │ │ ├── FindReplaceForm.cs
│ │ │ ├── FindReplaceForm.designer.cs
│ │ │ ├── FindReplaceForm.resx
│ │ │ ├── TablePropertyForm.cs
│ │ │ ├── TablePropertyForm.designer.cs
│ │ │ └── TablePropertyForm.resx
│ │ ├── HtmlEditor.cs
│ │ ├── HtmlEditor.Designer.cs
│ │ ├── HtmlEditor.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── WinHtmlEditor.ContextMenuForm.resources
│ │ │ ├── WinHtmlEditor.csproj.FileListAbsolute.txt
│ │ │ ├── WinHtmlEditor.csproj.GenerateResource.Cache
│ │ │ ├── WinHtmlEditor.csprojResolveAssemblyReference.cache
│ │ │ ├── WinHtmlEditor.dll
│ │ │ ├── WinHtmlEditor.EditHtmlForm.resources
│ │ │ ├── WinHtmlEditor.FindReplaceForm.resources
│ │ │ ├── WinHtmlEditor.HtmlEditor.resources
│ │ │ ├── WinHtmlEditor.OfficeColorPicker.resources
│ │ │ ├── WinHtmlEditor.pdb
│ │ │ ├── WinHtmlEditor.Properties.Resources.resources
│ │ │ ├── WinHtmlEditor.TablePropertyForm.resources
│ │ │ └── WinHtmlEditor.ToolStripColorPicker.resources
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ └── Resources.resx
│ │ ├── Resources
│ │ │ ├── About.png
│ │ │ ├── AutoLayout.png
│ │ │ ├── BackColor.bmp
│ │ │ ├── Bold.png
│ │ │ ├── Copy.png
│ │ │ ├── CreateLink.png
│ │ │ ├── Cut.png
│ │ │ ├── Date.png
│ │ │ ├── Delete.png
│ │ │ ├── Find.png
│ │ │ ├── ForeColor.bmp
│ │ │ ├── HTML.bmp
│ │ │ ├── Indent.png
│ │ │ ├── InsertHorizontalRule.png
│ │ │ ├── InsertImage.png
│ │ │ ├── InsertOrderedList.png
│ │ │ ├── InsertTable.png
│ │ │ ├── InsertUnorderedList.png
│ │ │ ├── Italic.png
│ │ │ ├── JustifyCenter.png
│ │ │ ├── JustifyFull.png
│ │ │ ├── JustifyLeft.png
│ │ │ ├── JustifyRight.png
│ │ │ ├── New.png
│ │ │ ├── Open.png
│ │ │ ├── Outdent.png
│ │ │ ├── Paste.png
│ │ │ ├── Preview.png
│ │ │ ├── Print.png
│ │ │ ├── Redo.png
│ │ │ ├── RemoveFormat.png
│ │ │ ├── Save.png
│ │ │ ├── ShowHTML.png
│ │ │ ├── SpellCheck.png
│ │ │ ├── StrikeThrough.png
│ │ │ ├── Subscript .png
│ │ │ ├── Superscript .png
│ │ │ ├── Time.gif
│ │ │ ├── Underline.png
│ │ │ ├── Undo.png
│ │ │ ├── Unlink.png
│ │ │ ├── Wordclean.png
│ │ │ └── wordcount.gif
│ │ └── WinHtmlEditor.csproj
│ ├── winSocketClient
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── log4net.dll
│ │ │ ├── log4net.xml
│ │ │ ├── NetSpell.SpellChecker.dll
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── SuperSocket.ClientEngine.dll
│ │ │ ├── SuperSocket.Common.dll
│ │ │ ├── SuperSocket.Facility.dll
│ │ │ ├── SuperSocket.SocketBase.dll
│ │ │ ├── SuperSocket.SocketEngine.dll
│ │ │ ├── SuperWebSocket.dll
│ │ │ ├── WebSocket4Net.dll
│ │ │ ├── WinHtmlEditor.dll
│ │ │ ├── WinHtmlEditor.pdb
│ │ │ ├── winSocketClient.exe
│ │ │ ├── winSocketClient.exe.config
│ │ │ ├── winSocketClient.pdb
│ │ │ ├── winSocketClient.vshost.exe
│ │ │ ├── winSocketClient.vshost.exe.config
│ │ │ └── winSocketClient.vshost.exe.manifest
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── kwig.dll
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── winSocketClient.csproj.FileListAbsolute.txt
│ │ │ ├── winSocketClient.csproj.GenerateResource.Cache
│ │ │ ├── winSocketClient.csprojResolveAssemblyReference.cache
│ │ │ ├── winSocketClient.exe
│ │ │ ├── winSocketClient.Form1.resources
│ │ │ ├── winSocketClient.pdb
│ │ │ └── winSocketClient.Properties.Resources.resources
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── winSocketClient.csproj
│ ├── winSocketClient.sln
│ └── winSocketClient.v12.suo
├── 使用说明.txt
└── 说明.txt
355 directories, 1640 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论