实例介绍
在大四的一次Web项目开发中要用到指纹识别仪器,买了中控的zk4500识别仪。 买回来后,高高兴兴的打算上手试试。结果悲催的发现win10装了驱动也没用。 只能苦逼的装了个win7的双系统。装完试了确实可以。结果又悲哀的发现中控SDK提供的控件在web 页面无法使用。 压缩包里包括数据库脚本、项目文件、中控指纹识别仪驱动及SDK使用说明书
【实例截图】
【核心代码】
5938b94c-a511-4db0-9a8e-a5cf68cde124
├── TSGJY
│ ├── BLL
│ │ ├── AdminBLL.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── TSGJY.BLL.dll
│ │ │ │ ├── TSGJY.BLL.pdb
│ │ │ │ ├── TSGJY.DAL.dll
│ │ │ │ ├── TSGJY.DAL.pdb
│ │ │ │ ├── TSGJY.DBHelp.dll
│ │ │ │ ├── TSGJY.DBHelp.pdb
│ │ │ │ ├── TSGJY.Entity.dll
│ │ │ │ └── TSGJY.Entity.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── TSGJY.BLL.dll
│ │ │ ├── TSGJY.BLL.pdb
│ │ │ ├── TSGJY.DAL.dll
│ │ │ ├── TSGJY.DAL.pdb
│ │ │ ├── TSGJY.DBHelp.dll
│ │ │ ├── TSGJY.DBHelp.pdb
│ │ │ ├── TSGJY.Entity.dll
│ │ │ └── TSGJY.Entity.pdb
│ │ ├── BLL.csproj
│ │ ├── BooksBLL.cs
│ │ ├── BorrowInfoBLL.cs
│ │ ├── FingerPrintBLL.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ │ │ ├── BLL.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── TSGJY.BLL.dll
│ │ │ │ └── TSGJY.BLL.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ │ ├── BLL.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TSGJY.BLL.dll
│ │ │ └── TSGJY.BLL.pdb
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── UserBLL.cs
│ ├── DAL
│ │ ├── AdminDAL.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── TSGJY.DAL.dll
│ │ │ │ ├── TSGJY.DAL.pdb
│ │ │ │ ├── TSGJY.DBHelp.dll
│ │ │ │ ├── TSGJY.DBHelp.pdb
│ │ │ │ ├── TSGJY.Entity.dll
│ │ │ │ └── TSGJY.Entity.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── TSGJY.DAL.dll
│ │ │ ├── TSGJY.DAL.pdb
│ │ │ ├── TSGJY.DBHelp.dll
│ │ │ ├── TSGJY.DBHelp.pdb
│ │ │ ├── TSGJY.Entity.dll
│ │ │ └── TSGJY.Entity.pdb
│ │ ├── BooksDAL.cs
│ │ ├── BorrowInfoDAL.cs
│ │ ├── DAL.csproj
│ │ ├── FingerPrintDAL.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ │ │ ├── DAL.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── TSGJY.DAL.dll
│ │ │ │ └── TSGJY.DAL.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ │ ├── DAL.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TSGJY.DAL.dll
│ │ │ └── TSGJY.DAL.pdb
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── UserDAL.cs
│ ├── DBHelp
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── TSGJY.DBHelp.dll
│ │ │ │ └── TSGJY.DBHelp.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── TSGJY.DBHelp.dll
│ │ │ └── TSGJY.DBHelp.pdb
│ │ ├── DBHelp.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DBHelp.csproj.FileListAbsolute.txt
│ │ │ │ ├── DBHelp.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── TSGJY.DBHelp.dll
│ │ │ │ └── TSGJY.DBHelp.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DBHelp.csproj.FileListAbsolute.txt
│ │ │ ├── DBHelp.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TSGJY.DBHelp.dll
│ │ │ └── TSGJY.DBHelp.pdb
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── SqlHelp.cs
│ ├── Entity
│ │ ├── Admin.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ ├── Newtonsoft.Json.xml
│ │ │ │ ├── TSGJY.Entity.dll
│ │ │ │ └── TSGJY.Entity.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── TSGJY.Entity.dll
│ │ │ └── TSGJY.Entity.pdb
│ │ ├── Book.cs
│ │ ├── BorrowInfo.cs
│ │ ├── Entity.csproj
│ │ ├── FingerPrint.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── Entity.csproj.FileListAbsolute.txt
│ │ │ │ ├── TSGJY.Entity.dll
│ │ │ │ └── TSGJY.Entity.pdb
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Entity.csproj.FileListAbsolute.txt
│ │ │ ├── Entity.csprojResolveAssemblyReference.cache
│ │ │ ├── TSGJY.Entity.dll
│ │ │ └── TSGJY.Entity.pdb
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── User.cs
│ ├── packages
│ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ ├── Interop.ZKFPEngXControl.dll
│ │ └── Newtonsoft.Json.12.0.1
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net35
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net40
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── net45
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ ├── portable-net40+sl5+win8+wp8+wpa81
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ └── Newtonsoft.Json.xml
│ │ │ └── portable-net45+win8+wp8+wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.pdb
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── LICENSE.md
│ │ └── Newtonsoft.Json.12.0.1.nupkg
│ ├── TSGJY.sln
│ ├── Web
│ │ ├── bin
│ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.pdb
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── TSGJY.BLL.dll
│ │ │ ├── TSGJY.BLL.pdb
│ │ │ ├── TSGJY.DAL.dll
│ │ │ ├── TSGJY.DAL.pdb
│ │ │ ├── TSGJY.DBHelp.dll
│ │ │ ├── TSGJY.DBHelp.pdb
│ │ │ ├── TSGJY.dll
│ │ │ ├── TSGJY.Entity.dll
│ │ │ ├── TSGJY.Entity.pdb
│ │ │ ├── TSGJY.pdb
│ │ │ ├── TSGJY.Web.dll
│ │ │ ├── TSGJY.Web.dll.config
│ │ │ └── TSGJY.Web.pdb
│ │ ├── Bootstrap
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ ├── bootstrap-theme.min.css.map
│ │ │ │ ├── bootstrapValidator.css
│ │ │ │ ├── bootstrapValidator.min.css
│ │ │ │ └── normalize.css
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── bootstrapValidator.js
│ │ │ ├── bootstrapValidator.min.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── jquery.min.js
│ │ │ └── npm.js
│ │ ├── Bootstrapvalidator
│ │ │ ├── dist
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrapValidator.css
│ │ │ │ │ └── bootstrapValidator.min.css
│ │ │ │ └── js
│ │ │ │ ├── bootstrapValidator.js
│ │ │ │ ├── bootstrapValidator.min.js
│ │ │ │ └── language
│ │ │ │ ├── ar_MA.js
│ │ │ │ ├── be_FR.js
│ │ │ │ ├── be_NL.js
│ │ │ │ ├── bg_BG.js
│ │ │ │ ├── cs_CZ.js
│ │ │ │ ├── da_DK.js
│ │ │ │ ├── de_DE.js
│ │ │ │ ├── en_US.js
│ │ │ │ ├── es_CL.js
│ │ │ │ ├── es_ES.js
│ │ │ │ ├── fa_IR.js
│ │ │ │ ├── fr_FR.js
│ │ │ │ ├── gr_EL.js
│ │ │ │ ├── he_IL.js
│ │ │ │ ├── hu_HU.js
│ │ │ │ ├── id_ID.js
│ │ │ │ ├── it_IT.js
│ │ │ │ ├── ja_JP.js
│ │ │ │ ├── nl_NL.js
│ │ │ │ ├── no_NO.js
│ │ │ │ ├── pl_PL.js
│ │ │ │ ├── pt_BR.js
│ │ │ │ ├── pt_PT.js
│ │ │ │ ├── ro_RO.js
│ │ │ │ ├── ru_RU.js
│ │ │ │ ├── sq_AL.js
│ │ │ │ ├── sr_RS.js
│ │ │ │ ├── sv_SE.js
│ │ │ │ ├── th_TH.js
│ │ │ │ ├── tr_TR.js
│ │ │ │ ├── ua_UA.js
│ │ │ │ ├── vi_VN.js
│ │ │ │ ├── zh_CN.js
│ │ │ │ └── zh_TW.js
│ │ │ └── vendor
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ └── bootstrap-theme.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── npm.js
│ │ │ ├── jasmine
│ │ │ │ ├── boot.js
│ │ │ │ ├── console.js
│ │ │ │ ├── jasmine.css
│ │ │ │ ├── jasmine_favicon.png
│ │ │ │ ├── jasmine-html.js
│ │ │ │ └── jasmine.js
│ │ │ └── jquery
│ │ │ └── jquery.min.js
│ │ ├── BorrowBook.aspx
│ │ ├── BorrowBook.aspx.cs
│ │ ├── BorrowBook.aspx.designer.cs
│ │ ├── CSS
│ │ │ ├── BorrowBook.css
│ │ │ ├── Index.css
│ │ │ ├── Login.css
│ │ │ ├── Manage.css
│ │ │ ├── Register.css
│ │ │ ├── Search.css
│ │ │ └── UserCenter.css
│ │ ├── EasyUI
│ │ │ ├── jquery.easyui.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── src
│ │ │ │ ├── easyloader.js
│ │ │ │ ├── jquery.accordion.js
│ │ │ │ ├── jquery.calendar.js
│ │ │ │ ├── jquery.combobox.js
│ │ │ │ ├── jquery.datebox.js
│ │ │ │ ├── jquery.draggable.js
│ │ │ │ ├── jquery.droppable.js
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jquery.linkbutton.js
│ │ │ │ ├── jquery.menu.js
│ │ │ │ ├── jquery.parser.js
│ │ │ │ ├── jquery.progressbar.js
│ │ │ │ ├── jquery.propertygrid.js
│ │ │ │ ├── jquery.resizable.js
│ │ │ │ ├── jquery.slider.js
│ │ │ │ ├── jquery.tabs.js
│ │ │ │ └── jquery.window.js
│ │ │ └── themes
│ │ │ ├── angular.css
│ │ │ ├── black
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── bootstrap
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── color.css
│ │ │ ├── default
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── gray
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── icon.css
│ │ │ ├── icons
│ │ │ │ ├── back.png
│ │ │ │ ├── blank.gif
│ │ │ │ ├── cancel.png
│ │ │ │ ├── clear.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── edit_add.png
│ │ │ │ ├── edit_remove.png
│ │ │ │ ├── filesave.png
│ │ │ │ ├── filter.png
│ │ │ │ ├── help.png
│ │ │ │ ├── large_chart.png
│ │ │ │ ├── large_clipart.png
│ │ │ │ ├── large_picture.png
│ │ │ │ ├── large_shapes.png
│ │ │ │ ├── large_smartart.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── man.png
│ │ │ │ ├── mini_add.png
│ │ │ │ ├── mini_edit.png
│ │ │ │ ├── mini_refresh.png
│ │ │ │ ├── more.png
│ │ │ │ ├── no.png
│ │ │ │ ├── ok.png
│ │ │ │ ├── pencil.png
│ │ │ │ ├── print.png
│ │ │ │ ├── redo.png
│ │ │ │ ├── reload.png
│ │ │ │ ├── search.png
│ │ │ │ ├── sum.png
│ │ │ │ ├── tip.png
│ │ │ │ └── undo.png
│ │ │ ├── material
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── material-teal
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── metro
│ │ │ │ ├── accordion.css
│ │ │ │ ├── calendar.css
│ │ │ │ ├── checkbox.css
│ │ │ │ ├── combobox.css
│ │ │ │ ├── combo.css
│ │ │ │ ├── datagrid.css
│ │ │ │ ├── datalist.css
│ │ │ │ ├── datebox.css
│ │ │ │ ├── dialog.css
│ │ │ │ ├── easyui.css
│ │ │ │ ├── filebox.css
│ │ │ │ ├── images
│ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ ├── tagbox_icons.png
│ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ └── validatebox_warning.png
│ │ │ │ ├── layout.css
│ │ │ │ ├── linkbutton.css
│ │ │ │ ├── menubutton.css
│ │ │ │ ├── menu.css
│ │ │ │ ├── messager.css
│ │ │ │ ├── numberbox.css
│ │ │ │ ├── pagination.css
│ │ │ │ ├── panel.css
│ │ │ │ ├── passwordbox.css
│ │ │ │ ├── progressbar.css
│ │ │ │ ├── propertygrid.css
│ │ │ │ ├── radiobutton.css
│ │ │ │ ├── searchbox.css
│ │ │ │ ├── sidemenu.css
│ │ │ │ ├── slider.css
│ │ │ │ ├── spinner.css
│ │ │ │ ├── splitbutton.css
│ │ │ │ ├── switchbutton.css
│ │ │ │ ├── tabs.css
│ │ │ │ ├── tagbox.css
│ │ │ │ ├── textbox.css
│ │ │ │ ├── tooltip.css
│ │ │ │ ├── tree.css
│ │ │ │ ├── validatebox.css
│ │ │ │ └── window.css
│ │ │ ├── mobile.css
│ │ │ ├── react.css
│ │ │ └── vue.css
│ │ ├── Handler
│ │ │ ├── BookHandler.ashx
│ │ │ ├── BookHandler.ashx.cs
│ │ │ ├── BorrowHandler.ashx
│ │ │ ├── BorrowHandler.ashx.cs
│ │ │ ├── UserHandler.ashx
│ │ │ └── UserHandler.ashx.cs
│ │ ├── Image
│ │ │ ├── s1005875.jpg
│ │ │ ├── s1067911.jpg
│ │ │ ├── s1103152.jpg
│ │ │ ├── s11369350.jpg
│ │ │ ├── s1146040.jpg
│ │ │ ├── s1242786.jpg
│ │ │ ├── s1727290.jpg
│ │ │ ├── s1800355.jpg
│ │ │ ├── s1872653.jpg
│ │ │ ├── s1914861.jpg
│ │ │ ├── s2164670.jpg
│ │ │ ├── s23128183.jpg
│ │ │ ├── s24493339.jpg
│ │ │ ├── s25996026.jpg
│ │ │ ├── s27264181.jpg
│ │ │ ├── s27814883.jpg
│ │ │ ├── s28033065.jpg
│ │ │ ├── s28668834.jpg
│ │ │ ├── s29053580.jpg
│ │ │ ├── s29287103.jpg
│ │ │ ├── s29440008.jpg
│ │ │ ├── s29787408.jpg
│ │ │ ├── s29866665.jpg
│ │ │ ├── s29954495.jpg
│ │ │ ├── s3802186.jpg
│ │ │ ├── s3993878.jpg
│ │ │ ├── s4124434.jpg
│ │ │ └── s6384944.jpg
│ │ ├── Img
│ │ │ ├── bg_1.jpg
│ │ │ ├── TXUser.png
│ │ │ ├── ZWBG.png
│ │ │ └── ZW.JPG
│ │ ├── Index.aspx
│ │ ├── Index.aspx.cs
│ │ ├── Index.aspx.designer.cs
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Login.aspx.designer.cs
│ │ ├── Manage.aspx
│ │ ├── Manage.aspx.cs
│ │ ├── Manage.aspx.designer.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── TSGJY.csproj.FileListAbsolute.txt
│ │ │ │ ├── TSGJY.csprojResolveAssemblyReference.cache
│ │ │ │ ├── TSGJY.dll
│ │ │ │ ├── TSGJY.pdb
│ │ │ │ ├── TSGJY.Web.dll
│ │ │ │ ├── TSGJY.Web.pdb
│ │ │ │ ├── Web.csproj.FileListAbsolute.txt
│ │ │ │ ├── Web.csprojResolveAssemblyReference.cache
│ │ │ │ └── Web.csproj.ResolveComReference.cache
│ │ │ ├── x64
│ │ │ │ └── Debug
│ │ │ │ ├── build.force
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ └── Web.csproj.ResolveComReference.cache
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TSGJY.Web.dll
│ │ │ ├── TSGJY.Web.pdb
│ │ │ ├── Web.csproj.FileListAbsolute.txt
│ │ │ ├── Web.csprojResolveAssemblyReference.cache
│ │ │ └── Web.csproj.ResolveComReference.cache
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Register.aspx
│ │ ├── Register.aspx.cs
│ │ ├── Register.aspx.designer.cs
│ │ ├── Script
│ │ │ ├── BorrowInfo.js
│ │ │ ├── Index.js
│ │ │ ├── Login.js
│ │ │ ├── main.js
│ │ │ ├── manage.js
│ │ │ ├── Register.js
│ │ │ ├── Search.js
│ │ │ ├── UserCenter.js
│ │ │ ├── vue.min.js
│ │ │ └── vue-router.js
│ │ ├── Search.aspx
│ │ ├── Search.aspx.cs
│ │ ├── Search.aspx.designer.cs
│ │ ├── UserCenter.aspx
│ │ ├── UserCenter.aspx.cs
│ │ ├── UserCenter.aspx.designer.cs
│ │ ├── Web.config
│ │ ├── Web.csproj
│ │ ├── Web.csproj.user
│ │ ├── Web.Debug.config
│ │ └── Web.Release.config
│ └── ZKZW
│ ├── App.config
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ ├── ZKZW.exe
│ │ │ ├── ZKZW.exe.config
│ │ │ ├── ZKZW.pdb
│ │ │ ├── ZKZW.vshost.exe
│ │ │ ├── ZKZW.vshost.exe.config
│ │ │ └── ZKZW.vshost.exe.manifest
│ │ └── x86
│ │ └── Debug
│ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ ├── fingerprint.tpl
│ │ ├── Interop.ZKFPEngXControl.dll
│ │ ├── TSGJY.BLL.dll
│ │ ├── TSGJY.BLL.pdb
│ │ ├── TSGJY.DAL.dll
│ │ ├── TSGJY.DAL.pdb
│ │ ├── TSGJY.DBHelp.dll
│ │ ├── TSGJY.DBHelp.pdb
│ │ ├── TSGJY.Entity.dll
│ │ ├── TSGJY.Entity.pdb
│ │ ├── ZKZW.exe
│ │ ├── ZKZW.exe.config
│ │ ├── ZKZW.pdb
│ │ ├── ZKZW.vshost.exe
│ │ ├── ZKZW.vshost.exe.config
│ │ └── ZKZW.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ ├── build.force
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── ZKZW.csproj.FileListAbsolute.txt
│ │ │ ├── ZKZW.csproj.GenerateResource.Cache
│ │ │ ├── ZKZW.csprojResolveAssemblyReference.cache
│ │ │ ├── ZKZW.csproj.ResolveComReference.cache
│ │ │ ├── ZKZW.exe
│ │ │ ├── ZKZW.Form1.resources
│ │ │ ├── ZKZW.pdb
│ │ │ └── ZKZW.Properties.Resources.resources
│ │ └── x86
│ │ └── Debug
│ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Interop.ZKFPEngXControl.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── ZKZW.csproj.FileListAbsolute.txt
│ │ ├── ZKZW.csproj.GenerateResource.Cache
│ │ ├── ZKZW.csprojResolveAssemblyReference.cache
│ │ ├── ZKZW.csproj.ResolveComReference.cache
│ │ ├── ZKZW.exe
│ │ ├── ZKZW.Form1.resources
│ │ ├── ZKZW.pdb
│ │ └── ZKZW.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── ZKZW.csproj
├── TSGJY.sql
├── 中控指纹仪驱动
│ ├── ZKFinger SDK 5.0
│ │ ├── chs-doc
│ │ │ └── ZKFinger SDK_chs.pdf
│ │ ├── en-doc
│ │ │ └── ZKFinger SDK_en.pdf
│ │ ├── samples
│ │ │ ├── C#
│ │ │ │ ├── app.config
│ │ │ │ ├── bin
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ │ │ │ ├── demo.application
│ │ │ │ │ │ ├── demo.exe.config
│ │ │ │ │ │ ├── demo.exe.manifest
│ │ │ │ │ │ ├── demo.pdb
│ │ │ │ │ │ ├── demo.vshost.application
│ │ │ │ │ │ ├── demo.vshost.exe
│ │ │ │ │ │ ├── demo.vshost.exe.config
│ │ │ │ │ │ ├── demo.vshost.exe.manifest
│ │ │ │ │ │ └── Interop.ZKFPEngXControl.dll
│ │ │ │ │ └── x86
│ │ │ │ │ └── Release
│ │ │ │ │ ├── app.publish
│ │ │ │ │ │ └── demo.exe
│ │ │ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ │ │ ├── demo.exe
│ │ │ │ │ ├── demo.exe.config
│ │ │ │ │ ├── demo.vshost.exe
│ │ │ │ │ ├── demo.vshost.exe.config
│ │ │ │ │ └── Interop.ZKFPEngXControl.dll
│ │ │ │ ├── Biokey01_TemporaryKey.pfx
│ │ │ │ ├── data
│ │ │ │ │ └── Templates.ldb
│ │ │ │ ├── Demo.csproj
│ │ │ │ ├── Demo.csproj.user
│ │ │ │ ├── Demo.sln
│ │ │ │ ├── Demo.suo
│ │ │ │ ├── Demo_TemporaryKey.pfx
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── obj
│ │ │ │ │ ├── Release
│ │ │ │ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ │ │ │ ├── Biokey01.Form1.resources
│ │ │ │ │ │ ├── Biokey01.Properties.Resources.resources
│ │ │ │ │ │ ├── demo.application
│ │ │ │ │ │ ├── Demo.csproj.FileListAbsolute.txt
│ │ │ │ │ │ ├── Demo.csproj.GenerateResource.Cache
│ │ │ │ │ │ ├── Demo.csproj.ResolveComReference.cache
│ │ │ │ │ │ ├── demo.exe.manifest
│ │ │ │ │ │ ├── demo.pdb
│ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ │ │ │ └── TempPE
│ │ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ │ └── x86
│ │ │ │ │ └── Release
│ │ │ │ │ ├── AxInterop.ZKFPEngXControl.dll
│ │ │ │ │ ├── Biokey01.Form1.resources
│ │ │ │ │ ├── Biokey01.Properties.Resources.resources
│ │ │ │ │ ├── Demo.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── Demo.csproj.GenerateResource.Cache
│ │ │ │ │ ├── Demo.csprojResolveAssemblyReference.cache
│ │ │ │ │ ├── Demo.csproj.ResolveComReference.cache
│ │ │ │ │ ├── demo.exe
│ │ │ │ │ ├── demo.pdb
│ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ │ ├── Interop.ZKFPEngXControl.dll
│ │ │ │ │ └── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Settings.cs
│ │ │ │ ├── UpgradeLog2.XML
│ │ │ │ └── UpgradeLog.XML
│ │ │ ├── Delphi
│ │ │ │ ├── Demo.cfg
│ │ │ │ ├── Demo.dof
│ │ │ │ ├── Demo.dpr
│ │ │ │ ├── Demo.exe
│ │ │ │ ├── Demo.res
│ │ │ │ ├── Fingerprint.bmp
│ │ │ │ ├── fingerprint.tpl
│ │ │ │ ├── Unit1.dcu
│ │ │ │ ├── Unit1.ddp
│ │ │ │ ├── Unit1.dfm
│ │ │ │ └── Unit1.pas
│ │ │ └── VC
│ │ │ ├── Demo.aps
│ │ │ ├── Demo.clw
│ │ │ ├── Demo.cpp
│ │ │ ├── DemoDlg.cpp
│ │ │ ├── DemoDlg.h
│ │ │ ├── Demo.dsp
│ │ │ ├── Demo.dsw
│ │ │ ├── Demo.h
│ │ │ ├── Demo.opt
│ │ │ ├── Demo.plg
│ │ │ ├── Demo.rc
│ │ │ ├── Demo.sln
│ │ │ ├── Demo.suo
│ │ │ ├── Demo.VC.db
│ │ │ ├── Demo.vcproj
│ │ │ ├── Demo.vcproj.DESKTOP-N8C5G0U.scarx.user
│ │ │ ├── Demo.vcxproj
│ │ │ ├── Demo.vcxproj.filters
│ │ │ ├── Demo.vcxproj.user
│ │ │ ├── Release
│ │ │ │ └── Demo.exe
│ │ │ ├── res
│ │ │ │ ├── Demo.ico
│ │ │ │ ├── Demo.rc2
│ │ │ │ └── _desktop.ini
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── UpgradeLog.XML
│ │ │ ├── zkfpengx1.cpp
│ │ │ └── zkfpengx1.h
│ │ └── setup.exe
│ ├── 使用说明.url
│ └── 软件E线下载.url
└── 使用说明.txt
134 directories, 1021 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论