实例介绍
【实例简介】C# MVC项目 权限管理系统
有数据文件,可直接运行,具备快速开发框架以及基本功能
【实例截图】
【核心代码】
.
├── 好例子网_权限管理系统.rar
└── 权限管理系统
├── db
│ ├── AssetManagement.mdf
│ ├── AssetManagement.mdf.src
│ ├── AssetManagement_log.ldf
│ └── AssetManagement_log.ldf.src
├── db.rar
├── mvc权限系统架构.rar
└── mvc权限系统架构练习
├── MVCPermissions.BLL
│ ├── MVCPermissions.BLL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SystemManage
│ │ ├── CrashReportBLL.cs
│ │ ├── op_FunctionBLL.cs
│ │ ├── op_RoleInfoBLL.cs
│ │ ├── op_Role_FuctionBLL.cs
│ │ ├── op_dictionary_typeBLL.cs
│ │ └── op_usersBLL.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── MVCPermissions.BLL.dll
│ │ │ ├── MVCPermissions.BLL.pdb
│ │ │ ├── MVCPermissions.Common.dll
│ │ │ ├── MVCPermissions.Common.pdb
│ │ │ ├── MVCPermissions.DAL.dll
│ │ │ ├── MVCPermissions.DAL.pdb
│ │ │ ├── MVCPermissions.Model.dll
│ │ │ ├── MVCPermissions.Model.pdb
│ │ │ ├── MVCServices.dll
│ │ │ ├── MVCServices.pdb
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ ├── log4net.dll
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Mvc.resources.dll
│ │ └── Release
│ │ ├── MVCPermissions.BLL.dll
│ │ ├── MVCPermissions.BLL.pdb
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── MVCPermissions.DAL.dll
│ │ ├── MVCPermissions.DAL.pdb
│ │ ├── MVCPermissions.Model.dll
│ │ ├── MVCPermissions.Model.pdb
│ │ ├── MVCServices.dll
│ │ ├── MVCServices.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ └── log4net.dll
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MVCPermissions.BLL.csproj.CopyComplete
│ │ ├── MVCPermissions.BLL.csproj.CoreCompileInputs.cache
│ │ ├── MVCPermissions.BLL.csproj.FileListAbsolute.txt
│ │ ├── MVCPermissions.BLL.csprojAssemblyReference.cache
│ │ ├── MVCPermissions.BLL.csprojResolveAssemblyReference.cache
│ │ ├── MVCPermissions.BLL.dll
│ │ ├── MVCPermissions.BLL.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── MVCPermissions.BLL.csproj.FileListAbsolute.txt
│ ├── MVCPermissions.BLL.csprojResolveAssemblyReference.cache
│ ├── MVCPermissions.BLL.dll
│ ├── MVCPermissions.BLL.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── MVCPermissions.Common
│ ├── BS
│ │ ├── BSRequest.cs
│ │ └── DTMail.cs
│ ├── Dapper
│ │ ├── Dapper.Contrib
│ │ │ └── SqlMapperExtensions.cs
│ │ ├── Dapper.Rainbow
│ │ │ ├── Database.cs
│ │ │ ├── IgnorePropertyAttribute.cs
│ │ │ ├── Snapshotter.cs
│ │ │ └── SqlCompactDatabase.cs
│ │ └── SqlMapper.cs
│ ├── DatabaseManage
│ │ ├── BaseSetting.cs
│ │ ├── DBHelperFactory.cs
│ │ └── XmlSerializerHelper.cs
│ ├── Delegation
│ │ ├── RefreshHandler.cs
│ │ └── VerifyCode.cs
│ ├── Extensions.cs
│ ├── HttpExtensions
│ │ ├── CustomJsonResult.cs
│ │ └── Json.cs
│ ├── Lognet4
│ │ └── LogHelper.cs
│ ├── MD5Encrypting
│ │ └── MD5PassWordProvider.cs
│ ├── MVCPermissions.Common.csproj
│ ├── Pagination
│ │ ├── PagedList.cs
│ │ └── PagingHelper.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SQLInjectionHelper.cs
│ ├── Service References
│ ├── Utils.cs
│ ├── WebControl
│ │ └── AjaxResult.cs
│ ├── WebHelper.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── MVCPermissions.Common.dll
│ │ │ ├── MVCPermissions.Common.pdb
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ ├── log4net.dll
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Mvc.resources.dll
│ │ └── Release
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ └── log4net.dll
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MVCPermissions.Common.csproj.CopyComplete
│ │ ├── MVCPermissions.Common.csproj.CoreCompileInputs.cache
│ │ ├── MVCPermissions.Common.csproj.FileListAbsolute.txt
│ │ ├── MVCPermissions.Common.csprojResolveAssemblyReference.cache
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── MVCPermissions.Common.csproj.FileListAbsolute.txt
│ ├── MVCPermissions.Common.csprojResolveAssemblyReference.cache
│ ├── MVCPermissions.Common.dll
│ ├── MVCPermissions.Common.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── MVCPermissions.DAL
│ ├── MVCPermissions.DAL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SystemManage
│ │ ├── CrashReportDAL.cs
│ │ ├── op_FunctionDAL.cs
│ │ ├── op_RoleInfoDAL.cs
│ │ ├── op_Role_FuctionDAL.cs
│ │ ├── op_dictionary_typeDAL.cs
│ │ └── op_usersDAL.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── MVCPermissions.Common.dll
│ │ │ ├── MVCPermissions.Common.pdb
│ │ │ ├── MVCPermissions.DAL.dll
│ │ │ ├── MVCPermissions.DAL.pdb
│ │ │ ├── MVCPermissions.Model.dll
│ │ │ ├── MVCPermissions.Model.pdb
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ ├── log4net.dll
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Mvc.resources.dll
│ │ └── Release
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── MVCPermissions.DAL.dll
│ │ ├── MVCPermissions.DAL.pdb
│ │ ├── MVCPermissions.Model.dll
│ │ ├── MVCPermissions.Model.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ └── log4net.dll
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MVCPermissions.DAL.csproj.CopyComplete
│ │ ├── MVCPermissions.DAL.csproj.CoreCompileInputs.cache
│ │ ├── MVCPermissions.DAL.csproj.FileListAbsolute.txt
│ │ ├── MVCPermissions.DAL.csprojAssemblyReference.cache
│ │ ├── MVCPermissions.DAL.csprojResolveAssemblyReference.cache
│ │ ├── MVCPermissions.DAL.dll
│ │ ├── MVCPermissions.DAL.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── MVCPermissions.DAL.csproj.FileListAbsolute.txt
│ ├── MVCPermissions.DAL.csprojResolveAssemblyReference.cache
│ ├── MVCPermissions.DAL.dll
│ ├── MVCPermissions.DAL.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── MVCPermissions.Model
│ ├── MVCPermissions.MODEL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SystemManage
│ │ ├── CrashReport.cs
│ │ ├── DictionaryTreeView.cs
│ │ ├── FunctionTreeViewModel.cs
│ │ ├── op_Function.cs
│ │ ├── op_RoleInfo.cs
│ │ ├── op_Role_Fuction.cs
│ │ ├── op_User_Role.cs
│ │ ├── op_dictionary_type.cs
│ │ └── op_users.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── FluentValidation.Mvc.dll
│ │ │ ├── FluentValidation.Mvc.xml
│ │ │ ├── FluentValidation.dll
│ │ │ ├── FluentValidation.xml
│ │ │ ├── MVCPermissions.Common.dll
│ │ │ ├── MVCPermissions.Common.pdb
│ │ │ ├── MVCPermissions.Model.dll
│ │ │ ├── MVCPermissions.Model.pdb
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ └── log4net.dll
│ │ └── Release
│ │ ├── FluentValidation.Mvc.dll
│ │ ├── FluentValidation.Mvc.xml
│ │ ├── FluentValidation.dll
│ │ ├── FluentValidation.xml
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── MVCPermissions.Model.dll
│ │ ├── MVCPermissions.Model.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ └── log4net.dll
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MVCPermissions.MODEL.csproj.CopyComplete
│ │ ├── MVCPermissions.MODEL.csproj.CoreCompileInputs.cache
│ │ ├── MVCPermissions.MODEL.csproj.FileListAbsolute.txt
│ │ ├── MVCPermissions.MODEL.csprojAssemblyReference.cache
│ │ ├── MVCPermissions.MODEL.csprojResolveAssemblyReference.cache
│ │ ├── MVCPermissions.Model.dll
│ │ ├── MVCPermissions.Model.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── MVCPermissions.MODEL.csproj.FileListAbsolute.txt
│ ├── MVCPermissions.MODEL.csprojResolveAssemblyReference.cache
│ ├── MVCPermissions.Model.dll
│ ├── MVCPermissions.Model.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── MVCServices
│ ├── MVCServices.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SystemManage
│ │ ├── ICrashReport.cs
│ │ ├── IFunction.cs
│ │ ├── IRoleInfo.cs
│ │ ├── IRole_Fuction.cs
│ │ ├── Idictionary_type.cs
│ │ └── Iop_users.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── MVCPermissions.Common.dll
│ │ │ ├── MVCPermissions.Common.pdb
│ │ │ ├── MVCPermissions.Model.dll
│ │ │ ├── MVCPermissions.Model.pdb
│ │ │ ├── MVCServices.dll
│ │ │ ├── MVCServices.pdb
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ ├── log4net.dll
│ │ │ └── zh-Hans
│ │ │ └── System.Web.Mvc.resources.dll
│ │ └── Release
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── MVCPermissions.Model.dll
│ │ ├── MVCPermissions.Model.pdb
│ │ ├── MVCServices.dll
│ │ ├── MVCServices.pdb
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ └── log4net.dll
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MVCServices.csproj.CopyComplete
│ │ ├── MVCServices.csproj.CoreCompileInputs.cache
│ │ ├── MVCServices.csproj.FileListAbsolute.txt
│ │ ├── MVCServices.csprojAssemblyReference.cache
│ │ ├── MVCServices.csprojResolveAssemblyReference.cache
│ │ ├── MVCServices.dll
│ │ ├── MVCServices.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── MVCServices.csproj.FileListAbsolute.txt
│ ├── MVCServices.csprojResolveAssemblyReference.cache
│ ├── MVCServices.dll
│ ├── MVCServices.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── mvc权限系统架构练习
│ ├── App_Data
│ ├── App_Start
│ │ ├── BundleConfig.cs
│ │ ├── FilterConfig.cs
│ │ ├── Handler
│ │ │ └── HandlerErrorAttribute.cs
│ │ ├── RouteConfig.cs
│ │ └── WebApiConfig.cs
│ ├── Content
│ │ ├── Site.css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── images
│ │ │ ├── 404_r1_c2.png
│ │ │ ├── ajax-loader.gif
│ │ │ └── y.jpg
│ │ ├── js
│ │ │ ├── EasyuiJS
│ │ │ │ ├── Themes
│ │ │ │ │ ├── Default
│ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ ├── combobox.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
│ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ └── window.css
│ │ │ │ │ ├── icon.css
│ │ │ │ │ └── icons
│ │ │ │ │ ├── LogoMax.png
│ │ │ │ │ ├── arrow_join.png
│ │ │ │ │ ├── back.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── cancel.png
│ │ │ │ │ ├── cross.png
│ │ │ │ │ ├── cut.png
│ │ │ │ │ ├── database_add.png
│ │ │ │ │ ├── edit_add.png
│ │ │ │ │ ├── edit_remove.png
│ │ │ │ │ ├── filesave.png
│ │ │ │ │ ├── folder_key.png
│ │ │ │ │ ├── help.png
│ │ │ │ │ ├── key.png
│ │ │ │ │ ├── mini_add.png
│ │ │ │ │ ├── mini_edit.png
│ │ │ │ │ ├── mini_refresh.png
│ │ │ │ │ ├── no.png
│ │ │ │ │ ├── ok.png
│ │ │ │ │ ├── page_excel.png
│ │ │ │ │ ├── page_white_excel.png
│ │ │ │ │ ├── pencil.png
│ │ │ │ │ ├── pencil1.png
│ │ │ │ │ ├── plugin_add.png
│ │ │ │ │ ├── print.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── reload.png
│ │ │ │ │ ├── search.png
│ │ │ │ │ ├── sum.png
│ │ │ │ │ ├── table_refresh.png
│ │ │ │ │ ├── tip.png
│ │ │ │ │ ├── undo.png
│ │ │ │ │ └── wrench.png
│ │ │ │ ├── easyui-dialog-fix.js
│ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ ├── jquery-1.8.0.min.js
│ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ ├── jquery.serializejson.js
│ │ │ │ ├── treegrid-dnd.js
│ │ │ │ └── treegrid_cascadeCheck.js
│ │ │ ├── Treeview
│ │ │ │ └── bootstrap-treeview.js
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ └── bootstrap.min.js
│ │ │ ├── charts
│ │ │ │ ├── Chart.js
│ │ │ │ └── Chart.min.js
│ │ │ ├── datepicker
│ │ │ │ ├── DatePicker.js
│ │ │ │ ├── WdatePicker.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── skin
│ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ ├── datePicker.png
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── datepicker-dev.css
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ └── img.png
│ │ │ │ │ └── whyGreen
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── 开发包
│ │ │ │ ├── lang
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ └── zh-tw.js
│ │ │ │ ├── readme.txt
│ │ │ │ └── skin
│ │ │ │ ├── WdatePicker.css
│ │ │ │ ├── datePicker.gif
│ │ │ │ ├── datePicker.png
│ │ │ │ ├── default
│ │ │ │ │ ├── datepicker.css
│ │ │ │ │ └── img.gif
│ │ │ │ └── whyGreen
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── datepicker.css
│ │ │ │ └── img.gif
│ │ │ ├── index.js
│ │ │ ├── jquery
│ │ │ │ ├── My97DatePicker
│ │ │ │ │ ├── My97 演示.mht
│ │ │ │ │ ├── My97DatePicker.htm
│ │ │ │ │ ├── WdatePicker.js
│ │ │ │ │ ├── calendar.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh-tw.js
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── skin
│ │ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ ├── down.jpg
│ │ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ │ ├── left.gif
│ │ │ │ │ │ │ ├── navLeft.gif
│ │ │ │ │ │ │ ├── navRight.gif
│ │ │ │ │ │ │ ├── qs.jpg
│ │ │ │ │ │ │ ├── right.gif
│ │ │ │ │ │ │ ├── up.jpg
│ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ └── whyGreen
│ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ ├── down.jpg
│ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ ├── left.gif
│ │ │ │ │ │ ├── navLeft.gif
│ │ │ │ │ │ ├── navRight.gif
│ │ │ │ │ │ ├── qs.jpg
│ │ │ │ │ │ ├── right.gif
│ │ │ │ │ │ ├── up.jpg
│ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ └── 开发包
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh-tw.js
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── skin
│ │ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ └── whyGreen
│ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ └── vssver2.scc
│ │ │ │ ├── jQuery-2.2.0.min.js
│ │ │ │ ├── jq.Slide.js
│ │ │ │ └── jquery-ui
│ │ │ │ ├── images
│ │ │ │ │ ├── calendar.gif
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── jquery-ui.min.css
│ │ │ │ └── jquery-ui.min.js
│ │ │ ├── jquery.js
│ │ │ └── pintuer.js
│ │ ├── plugins
│ │ │ ├── datetime
│ │ │ │ ├── moment.min.js
│ │ │ │ ├── pikaday.css
│ │ │ │ └── pikaday.js
│ │ │ ├── jqgrid
│ │ │ │ ├── grid.locale-cn.js
│ │ │ │ ├── jqgrid.css
│ │ │ │ ├── jqgrid.js
│ │ │ │ └── jqgrid.min.js
│ │ │ ├── jquery
│ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ └── jquery-2.0.3.min.js
│ │ │ ├── jquery-ui
│ │ │ │ ├── images
│ │ │ │ │ ├── calendar.gif
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── jquery-ui.min.css
│ │ │ │ └── jquery-ui.min.js
│ │ │ ├── layer
│ │ │ │ ├── layer.js
│ │ │ │ ├── mobile
│ │ │ │ │ ├── layer.js
│ │ │ │ │ └── need
│ │ │ │ │ └── layer.css
│ │ │ │ └── theme
│ │ │ │ └── default
│ │ │ │ ├── icon-ext.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── layer.css
│ │ │ │ ├── loading-0.gif
│ │ │ │ ├── loading-1.gif
│ │ │ │ └── loading-2.gif
│ │ │ ├── learun-ui.css
│ │ │ ├── select2
│ │ │ │ ├── i18n
│ │ │ │ │ ├── ar.js
│ │ │ │ │ ├── az.js
│ │ │ │ │ ├── bg.js
│ │ │ │ │ ├── ca.js
│ │ │ │ │ ├── cs.js
│ │ │ │ │ ├── da.js
│ │ │ │ │ ├── de.js
│ │ │ │ │ ├── el.js
│ │ │ │ │ ├── en.js
│ │ │ │ │ ├── es.js
│ │ │ │ │ ├── et.js
│ │ │ │ │ ├── eu.js
│ │ │ │ │ ├── fa.js
│ │ │ │ │ ├── fi.js
│ │ │ │ │ ├── fr.js
│ │ │ │ │ ├── gl.js
│ │ │ │ │ ├── he.js
│ │ │ │ │ ├── hi.js
│ │ │ │ │ ├── hr.js
│ │ │ │ │ ├── hu.js
│ │ │ │ │ ├── id.js
│ │ │ │ │ ├── is.js
│ │ │ │ │ ├── it.js
│ │ │ │ │ ├── ja.js
│ │ │ │ │ ├── km.js
│ │ │ │ │ ├── ko.js
│ │ │ │ │ ├── lt.js
│ │ │ │ │ ├── lv.js
│ │ │ │ │ ├── mk.js
│ │ │ │ │ ├── ms.js
│ │ │ │ │ ├── nb.js
│ │ │ │ │ ├── nl.js
│ │ │ │ │ ├── pl.js
│ │ │ │ │ ├── pt-BR.js
│ │ │ │ │ ├── pt.js
│ │ │ │ │ ├── ro.js
│ │ │ │ │ ├── ru.js
│ │ │ │ │ ├── sk.js
│ │ │ │ │ ├── sr-Cyrl.js
│ │ │ │ │ ├── sr.js
│ │ │ │ │ ├── sv.js
│ │ │ │ │ ├── th.js
│ │ │ │ │ ├── tr.js
│ │ │ │ │ ├── uk.js
│ │ │ │ │ ├── vi.js
│ │ │ │ │ ├── zh-CN.js
│ │ │ │ │ └── zh-TW.js
│ │ │ │ ├── select2.css
│ │ │ │ ├── select2.full.js
│ │ │ │ ├── select2.full.min.js
│ │ │ │ ├── select2.js
│ │ │ │ ├── select2.min.css
│ │ │ │ └── select2.min.js
│ │ │ └── tree
│ │ │ ├── images
│ │ │ │ ├── icons
│ │ │ │ │ ├── Btn.Close.gif
│ │ │ │ │ ├── Btn.Refresh.gif
│ │ │ │ │ ├── Item.Add.gif
│ │ │ │ │ ├── Item.Delete.gif
│ │ │ │ │ ├── Item.Edit.gif
│ │ │ │ │ ├── Item.Input.gif
│ │ │ │ │ ├── Item.Save.gif
│ │ │ │ │ ├── Item.Search.gif
│ │ │ │ │ ├── add.png
│ │ │ │ │ ├── addStep.gif
│ │ │ │ │ ├── addStep_dsbl.gif
│ │ │ │ │ ├── btn-arrow.gif
│ │ │ │ │ ├── cal.gif
│ │ │ │ │ ├── checkbox_0.gif
│ │ │ │ │ ├── checkbox_0.png
│ │ │ │ │ ├── checkbox_1.gif
│ │ │ │ │ ├── checkbox_1.png
│ │ │ │ │ ├── checkbox_2.gif
│ │ │ │ │ ├── checkbox_2.png
│ │ │ │ │ ├── circle_animation.gif
│ │ │ │ │ ├── delItem.gif
│ │ │ │ │ ├── delItem_dsbl.gif
│ │ │ │ │ ├── delete.png
│ │ │ │ │ ├── edit.png
│ │ │ │ │ ├── folder_close.gif
│ │ │ │ │ ├── ico1.gif
│ │ │ │ │ ├── ico2.gif
│ │ │ │ │ ├── ico3.gif
│ │ │ │ │ ├── ico4-1-1.gif
│ │ │ │ │ ├── ico4-1.gif
│ │ │ │ │ ├── ico4-2.gif
│ │ │ │ │ ├── ico4-3.gif
│ │ │ │ │ ├── ico4-4.gif
│ │ │ │ │ ├── ico4.gif
│ │ │ │ │ ├── ico5.gif
│ │ │ │ │ ├── ico6-1.gif
│ │ │ │ │ ├── ico6-2.gif
│ │ │ │ │ ├── ico6.gif
│ │ │ │ │ ├── indicator.gif
│ │ │ │ │ ├── information.png
│ │ │ │ │ ├── none.gif
│ │ │ │ │ ├── note.gif
│ │ │ │ │ ├── rowdelete.png
│ │ │ │ │ ├── s.gif
│ │ │ │ │ ├── table_refresh.png
│ │ │ │ │ └── view.png
│ │ │ │ └── tree
│ │ │ │ ├── arrows.gif
│ │ │ │ ├── cbs.gif
│ │ │ │ ├── drop-yes.gif
│ │ │ │ ├── elbow-end-minus-nl.gif
│ │ │ │ ├── elbow-end-minus.gif
│ │ │ │ ├── elbow-end-plus-nl.gif
│ │ │ │ ├── elbow-end-plus.gif
│ │ │ │ ├── elbow-end.gif
│ │ │ │ ├── elbow-line.gif
│ │ │ │ ├── elbow-minus-nl.gif
│ │ │ │ ├── elbow-minus.gif
│ │ │ │ ├── elbow-plus-nl.gif
│ │ │ │ ├── elbow-plus.gif
│ │ │ │ ├── elbow.gif
│ │ │ │ ├── folder-open.gif
│ │ │ │ ├── folder.gif
│ │ │ │ ├── leaf.gif
│ │ │ │ └── loading.gif
│ │ │ ├── tree.css
│ │ │ └── tree.js
│ │ ├── styles
│ │ │ ├── css
│ │ │ │ ├── admin.css
│ │ │ │ ├── font-awesome.min.css
│ │ │ │ ├── index.css
│ │ │ │ ├── learun-ui.css
│ │ │ │ ├── login.css
│ │ │ │ ├── pintuer.css
│ │ │ │ └── skins
│ │ │ │ └── _all-skins.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ │ ├── weathericons-regular-webfont.eot
│ │ │ │ ├── weathericons-regular-webfont.svg
│ │ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ │ ├── weathericons-regular-webfont.woff
│ │ │ │ └── weathericons-regular-webfontd41d.eot
│ │ │ └── images
│ │ │ ├── bg.jpg
│ │ │ └── tmbg-white.png
│ │ └── utils
│ │ ├── learun-applayout.js
│ │ ├── learun-clientdata.js
│ │ ├── learun-flowlayout.js
│ │ ├── learun-form.js
│ │ ├── learun-im.js
│ │ └── learun-ui.js
│ ├── Controllers
│ │ ├── BSFunctionsController.cs
│ │ ├── BaseAdminController.cs
│ │ ├── CrashReportController.cs
│ │ ├── ErrorController.cs
│ │ ├── HomeController.cs
│ │ ├── LoginController.cs
│ │ ├── MDictionaryController.cs
│ │ ├── MFunctionsController.cs
│ │ ├── RoleFuctionController.cs
│ │ └── UserManageController.cs
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── MVCPermissionSystem.csproj
│ ├── MVCPermissionSystem.csproj.user
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ ├── Publish.pubxml
│ │ └── Publish.pubxml.user
│ ├── Scripts
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ ├── jquery-1.10.2.intellisense.js
│ │ ├── jquery-1.10.2.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.10.2.min.map
│ │ └── modernizr-2.6.2.js
│ ├── Views
│ │ ├── BSFunctions
│ │ │ └── Index.cshtml
│ │ ├── CrashReport
│ │ │ ├── Detail.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Error
│ │ │ ├── ErrorMessage.cshtml
│ │ │ └── ErrorPath404.cshtml
│ │ ├── Home
│ │ │ ├── Default.cshtml
│ │ │ ├── Index.cshtml
│ │ │ └── LookIcon.cshtml
│ │ ├── Login
│ │ │ ├── Index.cshtml
│ │ │ └── Index1.cshtml
│ │ ├── MDictionary
│ │ │ └── Index.cshtml
│ │ ├── MFunctions
│ │ │ └── Index.cshtml
│ │ ├── RoleFuction
│ │ │ └── Index.cshtml
│ │ ├── Shared
│ │ │ ├── _BootStrapAndJq.cshtml
│ │ │ ├── _Layout.cshtml
│ │ │ └── _LoadJsAndCss.cshtml
│ │ ├── UserManage
│ │ │ └── Index.cshtml
│ │ ├── Web.config
│ │ └── _ViewStart.cshtml
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── bin
│ │ ├── Antlr3.Runtime.dll
│ │ ├── Antlr3.Runtime.pdb
│ │ ├── Autofac.Extras.DynamicProxy.dll
│ │ ├── Autofac.Extras.DynamicProxy.xml
│ │ ├── Autofac.Integration.Mvc.dll
│ │ ├── Autofac.Integration.Mvc.xml
│ │ ├── Autofac.dll
│ │ ├── Autofac.xml
│ │ ├── Castle.Core.dll
│ │ ├── Castle.Core.xml
│ │ ├── FluentValidation.Mvc.dll
│ │ ├── FluentValidation.dll
│ │ ├── MVCPermissions.BLL.dll
│ │ ├── MVCPermissions.BLL.pdb
│ │ ├── MVCPermissions.Common.dll
│ │ ├── MVCPermissions.Common.pdb
│ │ ├── MVCPermissions.DAL.dll
│ │ ├── MVCPermissions.DAL.pdb
│ │ ├── MVCPermissions.Model.dll
│ │ ├── MVCPermissions.Model.pdb
│ │ ├── MVCServices.dll
│ │ ├── MVCServices.pdb
│ │ ├── Microsoft.CSharp.dll
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── System.ComponentModel.DataAnnotations.dll
│ │ ├── System.Configuration.dll
│ │ ├── System.Data.DataSetExtensions.dll
│ │ ├── System.Data.dll
│ │ ├── System.Drawing.dll
│ │ ├── System.EnterpriseServices.dll
│ │ ├── System.Net.Http.Formatting.dll
│ │ ├── System.Net.Http.Formatting.xml
│ │ ├── System.Net.Http.WebRequest.dll
│ │ ├── System.Net.Http.dll
│ │ ├── System.Web.Abstractions.dll
│ │ ├── System.Web.ApplicationServices.dll
│ │ ├── System.Web.DynamicData.dll
│ │ ├── System.Web.Entity.dll
│ │ ├── System.Web.Extensions.dll
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.Http.WebHost.dll
│ │ ├── System.Web.Http.WebHost.xml
│ │ ├── System.Web.Http.dll
│ │ ├── System.Web.Http.xml
│ │ ├── System.Web.Mvc.dll
│ │ ├── System.Web.Mvc.xml
│ │ ├── System.Web.Optimization.dll
│ │ ├── System.Web.Optimization.xml
│ │ ├── System.Web.Razor.dll
│ │ ├── System.Web.Razor.xml
│ │ ├── System.Web.Routing.dll
│ │ ├── System.Web.Services.dll
│ │ ├── System.Web.WebPages.Deployment.dll
│ │ ├── System.Web.WebPages.Deployment.xml
│ │ ├── System.Web.WebPages.Razor.dll
│ │ ├── System.Web.WebPages.Razor.xml
│ │ ├── System.Web.WebPages.dll
│ │ ├── System.Web.WebPages.xml
│ │ ├── System.Web.dll
│ │ ├── System.Xml.Linq.dll
│ │ ├── System.Xml.dll
│ │ ├── System.dll
│ │ ├── WebGrease.dll
│ │ ├── log4net.dll
│ │ ├── mvc权限系统架构练习.dll
│ │ ├── mvc权限系统架构练习.dll.config
│ │ ├── mvc权限系统架构练习.pdb
│ │ └── zh-Hans
│ │ ├── System.Net.Http.Formatting.resources.dll
│ │ ├── System.Web.Helpers.resources.dll
│ │ ├── System.Web.Http.WebHost.resources.dll
│ │ ├── System.Web.Http.resources.dll
│ │ ├── System.Web.Mvc.resources.dll
│ │ ├── System.Web.Razor.resources.dll
│ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ └── System.Web.WebPages.resources.dll
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── logs
│ │ └── 2018
│ │ ├── 201803
│ │ │ └── 20180319.htm
│ │ ├── 201809
│ │ │ └── 20180908.htm
│ │ └── 201810
│ │ └── 20181030.htm
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── MVCPermissionSystem.csproj.CopyComplete
│ │ │ ├── MVCPermissionSystem.csproj.CoreCompileInputs.cache
│ │ │ ├── MVCPermissionSystem.csproj.FileListAbsolute.txt
│ │ │ ├── MVCPermissionSystem.csprojAssemblyReference.cache
│ │ │ ├── MVCPermissionSystem.csprojResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── mvc权限系统架构练习.csproj.FileListAbsolute.txt
│ │ │ ├── mvc权限系统架构练习.csprojResolveAssemblyReference.cache
│ │ │ ├── mvc权限系统架构练习.dll
│ │ │ └── mvc权限系统架构练习.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MVCPermissionSystem.csproj.FileListAbsolute.txt
│ │ ├── MVCPermissionSystem.csprojResolveAssemblyReference.cache
│ │ ├── Package
│ │ │ └── PackageTmp
│ │ │ ├── Content
│ │ │ │ ├── images
│ │ │ │ │ ├── 404_r1_c2.png
│ │ │ │ │ ├── ajax-loader.gif
│ │ │ │ │ └── y.jpg
│ │ │ │ ├── js
│ │ │ │ │ ├── EasyuiJS
│ │ │ │ │ │ ├── Themes
│ │ │ │ │ │ │ ├── Default
│ │ │ │ │ │ │ │ ├── accordion.css
│ │ │ │ │ │ │ │ ├── calendar.css
│ │ │ │ │ │ │ │ ├── combo.css
│ │ │ │ │ │ │ │ ├── combobox.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
│ │ │ │ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ │ │ │ ├── layout.css
│ │ │ │ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ │ │ │ ├── menu.css
│ │ │ │ │ │ │ │ ├── menubutton.css
│ │ │ │ │ │ │ │ ├── messager.css
│ │ │ │ │ │ │ │ ├── numberbox.css
│ │ │ │ │ │ │ │ ├── pagination.css
│ │ │ │ │ │ │ │ ├── panel.css
│ │ │ │ │ │ │ │ ├── progressbar.css
│ │ │ │ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ │ │ │ ├── searchbox.css
│ │ │ │ │ │ │ │ ├── slider.css
│ │ │ │ │ │ │ │ ├── spinner.css
│ │ │ │ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ │ │ │ ├── tabs.css
│ │ │ │ │ │ │ │ ├── textbox.css
│ │ │ │ │ │ │ │ ├── tooltip.css
│ │ │ │ │ │ │ │ ├── tree.css
│ │ │ │ │ │ │ │ ├── validatebox.css
│ │ │ │ │ │ │ │ └── window.css
│ │ │ │ │ │ │ ├── icon.css
│ │ │ │ │ │ │ └── icons
│ │ │ │ │ │ │ ├── LogoMax.png
│ │ │ │ │ │ │ ├── arrow_join.png
│ │ │ │ │ │ │ ├── back.png
│ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ ├── cancel.png
│ │ │ │ │ │ │ ├── cross.png
│ │ │ │ │ │ │ ├── cut.png
│ │ │ │ │ │ │ ├── database_add.png
│ │ │ │ │ │ │ ├── edit_add.png
│ │ │ │ │ │ │ ├── edit_remove.png
│ │ │ │ │ │ │ ├── filesave.png
│ │ │ │ │ │ │ ├── folder_key.png
│ │ │ │ │ │ │ ├── help.png
│ │ │ │ │ │ │ ├── key.png
│ │ │ │ │ │ │ ├── mini_add.png
│ │ │ │ │ │ │ ├── mini_edit.png
│ │ │ │ │ │ │ ├── mini_refresh.png
│ │ │ │ │ │ │ ├── no.png
│ │ │ │ │ │ │ ├── ok.png
│ │ │ │ │ │ │ ├── page_excel.png
│ │ │ │ │ │ │ ├── page_white_excel.png
│ │ │ │ │ │ │ ├── pencil.png
│ │ │ │ │ │ │ ├── pencil1.png
│ │ │ │ │ │ │ ├── plugin_add.png
│ │ │ │ │ │ │ ├── print.png
│ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ ├── reload.png
│ │ │ │ │ │ │ ├── search.png
│ │ │ │ │ │ │ ├── sum.png
│ │ │ │ │ │ │ ├── table_refresh.png
│ │ │ │ │ │ │ ├── tip.png
│ │ │ │ │ │ │ ├── undo.png
│ │ │ │ │ │ │ └── wrench.png
│ │ │ │ │ │ ├── easyui-dialog-fix.js
│ │ │ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ │ │ ├── jquery-1.8.0.min.js
│ │ │ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ │ │ ├── jquery.serializejson.js
│ │ │ │ │ │ ├── treegrid-dnd.js
│ │ │ │ │ │ └── treegrid_cascadeCheck.js
│ │ │ │ │ ├── bootstrap
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── bootstrap.min.css
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ └── js
│ │ │ │ │ │ └── bootstrap.min.js
│ │ │ │ │ ├── charts
│ │ │ │ │ │ ├── Chart.js
│ │ │ │ │ │ └── Chart.min.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── jquery
│ │ │ │ │ │ ├── My97DatePicker
│ │ │ │ │ │ │ ├── My97 演示.mht
│ │ │ │ │ │ │ ├── My97DatePicker.htm
│ │ │ │ │ │ │ ├── WdatePicker.js
│ │ │ │ │ │ │ ├── calendar.js
│ │ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ │ └── zh-tw.js
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ ├── skin
│ │ │ │ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ │ │ ├── down.jpg
│ │ │ │ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ │ │ │ ├── left.gif
│ │ │ │ │ │ │ │ │ ├── navLeft.gif
│ │ │ │ │ │ │ │ │ ├── navRight.gif
│ │ │ │ │ │ │ │ │ ├── qs.jpg
│ │ │ │ │ │ │ │ │ ├── right.gif
│ │ │ │ │ │ │ │ │ ├── up.jpg
│ │ │ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ │ │ └── whyGreen
│ │ │ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ │ ├── down.jpg
│ │ │ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ │ │ ├── left.gif
│ │ │ │ │ │ │ │ ├── navLeft.gif
│ │ │ │ │ │ │ │ ├── navRight.gif
│ │ │ │ │ │ │ │ ├── qs.jpg
│ │ │ │ │ │ │ │ ├── right.gif
│ │ │ │ │ │ │ │ ├── up.jpg
│ │ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ │ └── 开发包
│ │ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ │ └── zh-tw.js
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ ├── skin
│ │ │ │ │ │ │ │ ├── WdatePicker.css
│ │ │ │ │ │ │ │ ├── datePicker.gif
│ │ │ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ │ │ ├── vssver2.scc
│ │ │ │ │ │ │ │ └── whyGreen
│ │ │ │ │ │ │ │ ├── bg.jpg
│ │ │ │ │ │ │ │ ├── datepicker.css
│ │ │ │ │ │ │ │ ├── img.gif
│ │ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ │ └── vssver2.scc
│ │ │ │ │ │ ├── jQuery-2.2.0.min.js
│ │ │ │ │ │ ├── jq.Slide.js
│ │ │ │ │ │ └── jquery-ui
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── calendar.gif
│ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ │ ├── jquery-ui.min.css
│ │ │ │ │ │ └── jquery-ui.min.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ └── pintuer.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── datetime
│ │ │ │ │ │ ├── moment.min.js
│ │ │ │ │ │ ├── pikaday.css
│ │ │ │ │ │ └── pikaday.js
│ │ │ │ │ ├── jqgrid
│ │ │ │ │ │ ├── grid.locale-cn.js
│ │ │ │ │ │ ├── jqgrid.css
│ │ │ │ │ │ ├── jqgrid.js
│ │ │ │ │ │ └── jqgrid.min.js
│ │ │ │ │ ├── jquery
│ │ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ │ └── jquery-2.0.3.min.js
│ │ │ │ │ ├── jquery-ui
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── calendar.gif
│ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ │ ├── jquery-ui.min.css
│ │ │ │ │ │ └── jquery-ui.min.js
│ │ │ │ │ ├── layer
│ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ ├── mobile
│ │ │ │ │ │ │ ├── layer.js
│ │ │ │ │ │ │ └── need
│ │ │ │ │ │ │ └── layer.css
│ │ │ │ │ │ └── theme
│ │ │ │ │ │ └── default
│ │ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ ├── layer.css
│ │ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ │ └── loading-2.gif
│ │ │ │ │ ├── learun-ui.css
│ │ │ │ │ ├── select2
│ │ │ │ │ │ ├── i18n
│ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ ├── az.js
│ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ ├── is.js
│ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ │ ├── ms.js
│ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ ├── pt-BR.js
│ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ ├── sr-Cyrl.js
│ │ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ ├── zh-CN.js
│ │ │ │ │ │ │ └── zh-TW.js
│ │ │ │ │ │ ├── select2.css
│ │ │ │ │ │ ├── select2.full.js
│ │ │ │ │ │ ├── select2.full.min.js
│ │ │ │ │ │ ├── select2.js
│ │ │ │ │ │ ├── select2.min.css
│ │ │ │ │ │ └── select2.min.js
│ │ │ │ │ └── tree
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── Btn.Close.gif
│ │ │ │ │ │ │ ├── Btn.Refresh.gif
│ │ │ │ │ │ │ ├── Item.Add.gif
│ │ │ │ │ │ │ ├── Item.Delete.gif
│ │ │ │ │ │ │ ├── Item.Edit.gif
│ │ │ │ │ │ │ ├── Item.Input.gif
│ │ │ │ │ │ │ ├── Item.Save.gif
│ │ │ │ │ │ │ ├── Item.Search.gif
│ │ │ │ │ │ │ ├── add.png
│ │ │ │ │ │ │ ├── addStep.gif
│ │ │ │ │ │ │ ├── addStep_dsbl.gif
│ │ │ │ │ │ │ ├── btn-arrow.gif
│ │ │ │ │ │ │ ├── cal.gif
│ │ │ │ │ │ │ ├── checkbox_0.gif
│ │ │ │ │ │ │ ├── checkbox_0.png
│ │ │ │ │ │ │ ├── checkbox_1.gif
│ │ │ │ │ │ │ ├── checkbox_1.png
│ │ │ │ │ │ │ ├── checkbox_2.gif
│ │ │ │ │ │ │ ├── checkbox_2.png
│ │ │ │ │ │ │ ├── circle_animation.gif
│ │ │ │ │ │ │ ├── delItem.gif
│ │ │ │ │ │ │ ├── delItem_dsbl.gif
│ │ │ │ │ │ │ ├── delete.png
│ │ │ │ │ │ │ ├── edit.png
│ │ │ │ │ │ │ ├── folder_close.gif
│ │ │ │ │ │ │ ├── ico1.gif
│ │ │ │ │ │ │ ├── ico2.gif
│ │ │ │ │ │ │ ├── ico3.gif
│ │ │ │ │ │ │ ├── ico4-1-1.gif
│ │ │ │ │ │ │ ├── ico4-1.gif
│ │ │ │ │ │ │ ├── ico4-2.gif
│ │ │ │ │ │ │ ├── ico4-3.gif
│ │ │ │ │ │ │ ├── ico4-4.gif
│ │ │ │ │ │ │ ├── ico4.gif
│ │ │ │ │ │ │ ├── ico5.gif
│ │ │ │ │ │ │ ├── ico6-1.gif
│ │ │ │ │ │ │ ├── ico6-2.gif
│ │ │ │ │ │ │ ├── ico6.gif
│ │ │ │ │ │ │ ├── indicator.gif
│ │ │ │ │ │ │ ├── information.png
│ │ │ │ │ │ │ ├── none.gif
│ │ │ │ │ │ │ ├── note.gif
│ │ │ │ │ │ │ ├── rowdelete.png
│ │ │ │ │ │ │ ├── s.gif
│ │ │ │ │ │ │ ├── table_refresh.png
│ │ │ │ │ │ │ └── view.png
│ │ │ │ │ │ └── tree
│ │ │ │ │ │ ├── arrows.gif
│ │ │ │ │ │ ├── cbs.gif
│ │ │ │ │ │ ├── drop-yes.gif
│ │ │ │ │ │ ├── elbow-end-minus-nl.gif
│ │ │ │ │ │ ├── elbow-end-minus.gif
│ │ │ │ │ │ ├── elbow-end-plus-nl.gif
│ │ │ │ │ │ ├── elbow-end-plus.gif
│ │ │ │ │ │ ├── elbow-end.gif
│ │ │ │ │ │ ├── elbow-line.gif
│ │ │ │ │ │ ├── elbow-minus-nl.gif
│ │ │ │ │ │ ├── elbow-minus.gif
│ │ │ │ │ │ ├── elbow-plus-nl.gif
│ │ │ │ │ │ ├── elbow-plus.gif
│ │ │ │ │ │ ├── elbow.gif
│ │ │ │ │ │ ├── folder-open.gif
│ │ │ │ │ │ ├── folder.gif
│ │ │ │ │ │ ├── leaf.gif
│ │ │ │ │ │ └── loading.gif
│ │ │ │ │ ├── tree.css
│ │ │ │ │ └── tree.js
│ │ │ │ ├── styles
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── admin.css
│ │ │ │ │ │ ├── font-awesome.min.css
│ │ │ │ │ │ ├── index.css
│ │ │ │ │ │ ├── learun-ui.css
│ │ │ │ │ │ ├── pintuer.css
│ │ │ │ │ │ └── skins
│ │ │ │ │ │ └── _all-skins.css
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ │ │ │ ├── weathericons-regular-webfont.eot
│ │ │ │ │ │ ├── weathericons-regular-webfont.svg
│ │ │ │ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ │ │ │ ├── weathericons-regular-webfont.woff
│ │ │ │ │ │ └── weathericons-regular-webfontd41d.eot
│ │ │ │ │ └── images
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ └── tmbg-white.png
│ │ │ │ └── utils
│ │ │ │ ├── learun-applayout.js
│ │ │ │ ├── learun-clientdata.js
│ │ │ │ ├── learun-flowlayout.js
│ │ │ │ ├── learun-form.js
│ │ │ │ ├── learun-im.js
│ │ │ │ └── learun-ui.js
│ │ │ ├── Global.asax
│ │ │ ├── Views
│ │ │ │ ├── BSFunctions
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── CrashReport
│ │ │ │ │ ├── Detail.cshtml
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Error
│ │ │ │ │ ├── ErrorMessage.cshtml
│ │ │ │ │ └── ErrorPath404.cshtml
│ │ │ │ ├── Home
│ │ │ │ │ ├── Default.cshtml
│ │ │ │ │ ├── Index.cshtml
│ │ │ │ │ └── LookIcon.cshtml
│ │ │ │ ├── Login
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── MDictionary
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── MFunctions
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── RoleFuction
│ │ │ │ │ └── Index.cshtml
│ │ │ │ ├── Shared
│ │ │ │ │ ├── _BootStrapAndJq.cshtml
│ │ │ │ │ └── _LoadJsAndCss.cshtml
│ │ │ │ ├── UserManage
│ │ │ │ │ └── Index.cshtml
│ │ │ │ └── Web.config
│ │ │ ├── Web.config
│ │ │ ├── bin
│ │ │ │ ├── Antlr3.Runtime.dll
│ │ │ │ ├── Autofac.Extras.DynamicProxy.dll
│ │ │ │ ├── Autofac.Integration.Mvc.dll
│ │ │ │ ├── Autofac.dll
│ │ │ │ ├── Castle.Core.dll
│ │ │ │ ├── MVCPermissions.BLL.dll
│ │ │ │ ├── MVCPermissions.Common.dll
│ │ │ │ ├── MVCPermissions.DAL.dll
│ │ │ │ ├── MVCPermissions.Model.dll
│ │ │ │ ├── MVCServices.dll
│ │ │ │ ├── Microsoft.CSharp.dll
│ │ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.dll
│ │ │ │ ├── System.Configuration.dll
│ │ │ │ ├── System.Data.DataSetExtensions.dll
│ │ │ │ ├── System.Data.dll
│ │ │ │ ├── System.Drawing.dll
│ │ │ │ ├── System.EnterpriseServices.dll
│ │ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ │ ├── System.Net.Http.WebRequest.dll
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ ├── System.Web.Abstractions.dll
│ │ │ │ ├── System.Web.ApplicationServices.dll
│ │ │ │ ├── System.Web.DynamicData.dll
│ │ │ │ ├── System.Web.Entity.dll
│ │ │ │ ├── System.Web.Extensions.dll
│ │ │ │ ├── System.Web.Helpers.dll
│ │ │ │ ├── System.Web.Http.WebHost.dll
│ │ │ │ ├── System.Web.Http.dll
│ │ │ │ ├── System.Web.Mvc.dll
│ │ │ │ ├── System.Web.Optimization.dll
│ │ │ │ ├── System.Web.Razor.dll
│ │ │ │ ├── System.Web.Routing.dll
│ │ │ │ ├── System.Web.Services.dll
│ │ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ │ ├── System.Web.WebPages.dll
│ │ │ │ ├── System.Web.dll
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ ├── System.Xml.dll
│ │ │ │ ├── System.dll
│ │ │ │ ├── WebGrease.dll
│ │ │ │ ├── log4net.dll
│ │ │ │ ├── mvc权限系统架构练习.dll
│ │ │ │ └── zh-Hans
│ │ │ │ ├── System.Net.Http.Formatting.resources.dll
│ │ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ │ ├── System.Web.Http.WebHost.resources.dll
│ │ │ │ ├── System.Web.Http.resources.dll
│ │ │ │ ├── System.Web.Mvc.resources.dll
│ │ │ │ ├── System.Web.Razor.resources.dll
│ │ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ │ └── System.Web.WebPages.resources.dll
│ │ │ └── packages.config
│ │ ├── ProfileTransformWebConfig
│ │ │ └── transformed
│ │ │ └── Views
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── TransformWebConfig
│ │ │ ├── assist
│ │ │ │ └── Web.config
│ │ │ ├── original
│ │ │ │ └── Web.config
│ │ │ └── transformed
│ │ │ ├── Views
│ │ │ └── Web.config
│ │ ├── _WPPLastBuildInfo.txt
│ │ ├── mvc权限系统架构练习.dll
│ │ └── mvc权限系统架构练习.pdb
│ └── packages.config
├── mvc权限系统架构练习.Tests
│ ├── App.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Autofac.Integration.Mvc.dll
│ │ │ ├── Autofac.Integration.Mvc.xml
│ │ │ ├── Autofac.dll
│ │ │ ├── Autofac.xml
│ │ │ ├── MVCPermissions.BLL.dll
│ │ │ ├── MVCPermissions.BLL.pdb
│ │ │ ├── MVCPermissions.Common.dll
│ │ │ ├── MVCPermissions.Common.pdb
│ │ │ ├── MVCPermissions.DAL.dll
│ │ │ ├── MVCPermissions.DAL.pdb
│ │ │ ├── MVCPermissions.Model.dll
│ │ │ ├── MVCPermissions.Model.pdb
│ │ │ ├── MVCServices.dll
│ │ │ ├── MVCServices.pdb
│ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll
│ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ ├── Microsoft.Web.Mvc.FixedDisplayModes.dll
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ ├── System.Net.Http.Formatting.xml
│ │ │ ├── System.Web.Helpers.dll
│ │ │ ├── System.Web.Helpers.xml
│ │ │ ├── System.Web.Http.WebHost.dll
│ │ │ ├── System.Web.Http.WebHost.xml
│ │ │ ├── System.Web.Http.dll
│ │ │ ├── System.Web.Http.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ ├── System.Web.Optimization.dll
│ │ │ ├── System.Web.Optimization.xml
│ │ │ ├── System.Web.Razor.dll
│ │ │ ├── System.Web.Razor.xml
│ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ ├── System.Web.WebPages.Deployment.xml
│ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ ├── System.Web.WebPages.Razor.xml
│ │ │ ├── System.Web.WebPages.dll
│ │ │ ├── System.Web.WebPages.xml
│ │ │ ├── log4net.dll
│ │ │ ├── mvc权限系统架构练习.Tests.dll
│ │ │ ├── mvc权限系统架构练习.Tests.dll.config
│ │ │ ├── mvc权限系统架构练习.Tests.pdb
│ │ │ ├── mvc权限系统架构练习.dll
│ │ │ ├── mvc权限系统架构练习.dll.config
│ │ │ ├── mvc权限系统架构练习.pdb
│ │ │ └── zh-Hans
│ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTestFramework.resources.dll
│ │ │ ├── System.Net.Http.Formatting.resources.dll
│ │ │ ├── System.Web.Helpers.resources.dll
│ │ │ ├── System.Web.Http.WebHost.resources.dll
│ │ │ ├── System.Web.Http.resources.dll
│ │ │ ├── System.Web.Razor.resources.dll
│ │ │ ├── System.Web.WebPages.Deployment.resources.dll
│ │ │ ├── System.Web.WebPages.Razor.resources.dll
│ │ │ └── System.Web.WebPages.resources.dll
│ │ └── Release
│ ├── mvc权限系统架构练习.Tests.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── mvc权限系统架构练习.Tests.csproj.CopyComplete
│ │ │ ├── mvc权限系统架构练习.Tests.csproj.CoreCompileInputs.cache
│ │ │ ├── mvc权限系统架构练习.Tests.csproj.FileListAbsolute.txt
│ │ │ ├── mvc权限系统架构练习.Tests.csprojAssemblyReference.cache
│ │ │ ├── mvc权限系统架构练习.Tests.csprojResolveAssemblyReference.cache
│ │ │ ├── mvc权限系统架构练习.Tests.dll
│ │ │ └── mvc权限系统架构练习.Tests.pdb
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── packages.config
├── mvc权限系统架构练习.sln
├── mvc权限系统架构练习.v12.suo
└── packages
├── Antlr.3.4.1.9004
│ ├── Antlr.3.4.1.9004.nupkg
│ ├── Antlr.3.4.1.9004.nuspec
│ └── lib
│ ├── Antlr3.Runtime.dll
│ └── Antlr3.Runtime.pdb
├── Autofac.4.6.2
│ ├── Autofac.4.6.2.nupkg
│ └── lib
│ ├── net45
│ │ ├── Autofac.dll
│ │ └── Autofac.xml
│ └── netstandard1.1
│ ├── Autofac.dll
│ └── Autofac.xml
├── Autofac.Extras.DynamicProxy.4.2.1
│ ├── Autofac.Extras.DynamicProxy.4.2.1.nupkg
│ └── lib
│ ├── net45
│ │ ├── Autofac.Extras.DynamicProxy.dll
│ │ └── Autofac.Extras.DynamicProxy.xml
│ └── netstandard1.3
│ ├── Autofac.Extras.DynamicProxy.dll
│ └── Autofac.Extras.DynamicProxy.xml
├── Autofac.Mvc5.4.0.2
│ ├── Autofac.Mvc5.4.0.2.nupkg
│ └── lib
│ └── net45
│ ├── Autofac.Integration.Mvc.dll
│ └── Autofac.Integration.Mvc.xml
├── Castle.Core.4.0.0
│ ├── ASL - Apache Software Foundation License.txt
│ ├── CHANGELOG.md
│ ├── Castle.Core.4.0.0.nupkg
│ ├── LICENSE
│ ├── lib
│ │ ├── net35
│ │ │ ├── Castle.Core.dll
│ │ │ └── Castle.Core.xml
│ │ ├── net40-client
│ │ │ ├── Castle.Core.dll
│ │ │ └── Castle.Core.xml
│ │ ├── net45
│ │ │ ├── Castle.Core.dll
│ │ │ └── Castle.Core.xml
│ │ └── netstandard1.3
│ │ ├── Castle.Core.dll
│ │ └── Castle.Core.xml
│ └── readme.txt
├── DLLS
│ └── log4net.dll
├── FluentValidation.7.1.1
│ ├── FluentValidation.7.1.1.nupkg
│ └── lib
│ ├── net45
│ │ ├── FluentValidation.dll
│ │ └── FluentValidation.xml
│ └── netstandard1.0
│ ├── FluentValidation.dll
│ └── FluentValidation.xml
├── FluentValidation.MVC5.7.1.1
│ ├── FluentValidation.MVC5.7.1.1.nupkg
│ └── lib
│ └── net45
│ ├── FluentValidation.Mvc.dll
│ └── FluentValidation.Mvc.xml
├── Microsoft.AspNet.Mvc.4.0.30506.0
│ ├── Microsoft.AspNet.Mvc.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.Mvc.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ ├── System.Web.Mvc.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Mvc.4.0.40804.0
│ ├── Microsoft.AspNet.Mvc.4.0.40804.0.nupkg
│ ├── content
│ │ ├── Web.config.install.xdt
│ │ └── Web.config.uninstall.xdt
│ └── lib
│ └── net40
│ ├── System.Web.Mvc.dll
│ ├── System.Web.Mvc.xml
│ └── zh-Hans
│ ├── System.Web.Mvc.resources.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Mvc.5.1.0
│ ├── Content
│ │ ├── Web.config.install.xdt
│ │ └── Web.config.uninstall.xdt
│ ├── Microsoft.AspNet.Mvc.5.1.0.nupkg
│ └── lib
│ └── net45
│ ├── System.Web.Mvc.dll
│ ├── System.Web.Mvc.xml
│ └── zh-Hans
│ ├── System.Web.Mvc.resources.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0
│ ├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg
│ ├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nuspec
│ └── lib
│ └── net40
│ └── Microsoft.Web.Mvc.FixedDisplayModes.dll
├── Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0
│ ├── Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0.nupkg
│ └── readme.txt
├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0
│ ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Web.Mvc.resources.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Mvc.zh-Hans.5.1.0
│ ├── Microsoft.AspNet.Mvc.zh-Hans.5.1.0.nupkg
│ └── lib
│ └── net45
│ └── zh-Hans
│ ├── System.Web.Mvc.resources.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Razor.2.0.30506.0
│ ├── Microsoft.AspNet.Razor.2.0.30506.0.nupkg
│ ├── Microsoft.AspNet.Razor.2.0.30506.0.nuspec
│ └── lib
│ └── net40
│ ├── System.Web.Razor.dll
│ ├── System.Web.Razor.xml
│ └── zh-Hans
│ ├── System.Web.Razor.resources.dll
│ └── system.web.razor.xml
├── Microsoft.AspNet.Razor.3.1.0
│ ├── Microsoft.AspNet.Razor.3.1.0.nupkg
│ └── lib
│ └── net45
│ ├── System.Web.Razor.dll
│ ├── System.Web.Razor.xml
│ └── zh-Hans
│ ├── System.Web.Razor.resources.dll
│ └── system.web.razor.xml
├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0
│ ├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg
│ ├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Web.Razor.resources.dll
│ └── system.web.razor.xml
├── Microsoft.AspNet.Razor.zh-Hans.3.1.0
│ ├── Microsoft.AspNet.Razor.zh-Hans.3.1.0.nupkg
│ └── lib
│ └── net45
│ └── zh-Hans
│ ├── System.Web.Razor.resources.dll
│ └── system.web.razor.xml
├── Microsoft.AspNet.Web.Optimization.1.1.3
│ ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg
│ ├── Microsoft.AspNet.Web.Optimization.1.1.3.nuspec
│ └── lib
│ └── net40
│ ├── System.Web.Optimization.dll
│ └── system.web.optimization.xml
├── Microsoft.AspNet.WebApi.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.4.0.30506.0.nupkg
│ └── Microsoft.AspNet.WebApi.4.0.30506.0.nuspec
├── Microsoft.AspNet.WebApi.Client.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebApi.Client.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ ├── System.Net.Http.Formatting.dll
│ ├── System.Net.Http.Formatting.xml
│ └── zh-Hans
│ ├── System.Net.Http.Formatting.resources.dll
│ └── System.Net.Http.Formatting.xml
├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Net.Http.Formatting.resources.dll
│ └── System.Net.Http.Formatting.xml
├── Microsoft.AspNet.WebApi.Core.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebApi.Core.4.0.30506.0.nuspec
│ ├── content
│ │ └── web.config.transform
│ └── lib
│ └── net40
│ ├── System.Web.Http.dll
│ ├── System.Web.Http.xml
│ └── zh-Hans
│ ├── System.Web.Http.resources.dll
│ └── System.Web.Http.xml
├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Web.Http.resources.dll
│ └── System.Web.Http.xml
├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ ├── System.Web.Http.WebHost.dll
│ ├── System.Web.Http.WebHost.xml
│ └── zh-Hans
│ ├── System.Web.Http.WebHost.resources.dll
│ └── System.Web.Http.WebHost.xml
├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0
│ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.4.0.30506.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Web.Http.WebHost.resources.dll
│ └── System.Web.Http.WebHost.xml
├── Microsoft.AspNet.WebPages.2.0.30506.0
│ ├── Microsoft.AspNet.WebPages.2.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebPages.2.0.30506.0.nuspec
│ └── lib
│ └── net40
│ ├── System.Web.Helpers.dll
│ ├── System.Web.Helpers.xml
│ ├── System.Web.WebPages.Deployment.dll
│ ├── System.Web.WebPages.Deployment.xml
│ ├── System.Web.WebPages.Razor.dll
│ ├── System.Web.WebPages.Razor.xml
│ ├── System.Web.WebPages.dll
│ ├── System.Web.WebPages.xml
│ └── zh-Hans
│ ├── System.Web.Helpers.resources.dll
│ ├── System.Web.WebPages.Deployment.resources.dll
│ ├── System.Web.WebPages.Razor.resources.dll
│ ├── System.Web.WebPages.resources.dll
│ ├── system.web.helpers.xml
│ ├── system.web.webpages.deployment.xml
│ ├── system.web.webpages.razor.xml
│ └── system.web.webpages.xml
├── Microsoft.AspNet.WebPages.3.1.0
│ ├── Content
│ │ ├── Web.config.install.xdt
│ │ └── Web.config.uninstall.xdt
│ ├── Microsoft.AspNet.WebPages.3.1.0.nupkg
│ └── lib
│ └── net45
│ ├── System.Web.Helpers.dll
│ ├── System.Web.Helpers.xml
│ ├── System.Web.WebPages.Deployment.dll
│ ├── System.Web.WebPages.Deployment.xml
│ ├── System.Web.WebPages.Razor.dll
│ ├── System.Web.WebPages.Razor.xml
│ ├── System.Web.WebPages.dll
│ ├── System.Web.WebPages.xml
│ └── zh-Hans
│ ├── System.Web.Helpers.resources.dll
│ ├── System.Web.WebPages.Deployment.resources.dll
│ ├── System.Web.WebPages.Razor.resources.dll
│ ├── System.Web.WebPages.resources.dll
│ ├── system.web.helpers.xml
│ ├── system.web.webpages.deployment.xml
│ ├── system.web.webpages.razor.xml
│ └── system.web.webpages.xml
├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0
│ ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg
│ ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Web.Helpers.resources.dll
│ ├── System.Web.WebPages.Deployment.resources.dll
│ ├── System.Web.WebPages.Razor.resources.dll
│ ├── System.Web.WebPages.resources.dll
│ ├── system.web.helpers.xml
│ ├── system.web.webpages.deployment.xml
│ ├── system.web.webpages.razor.xml
│ └── system.web.webpages.xml
├── Microsoft.AspNet.WebPages.zh-Hans.3.1.0
│ ├── Microsoft.AspNet.WebPages.zh-Hans.3.1.0.nupkg
│ └── lib
│ └── net45
│ └── zh-Hans
│ ├── System.Web.Helpers.resources.dll
│ ├── System.Web.WebPages.Deployment.resources.dll
│ ├── System.Web.WebPages.Razor.resources.dll
│ ├── System.Web.WebPages.resources.dll
│ ├── system.web.helpers.xml
│ ├── system.web.webpages.deployment.xml
│ ├── system.web.webpages.razor.xml
│ └── system.web.webpages.xml
├── Microsoft.Net.Http.2.0.20710.0
│ ├── Microsoft.Net.Http.2.0.20710.0.nupkg
│ ├── Microsoft.Net.Http.2.0.20710.0.nuspec
│ └── lib
│ ├── net40
│ │ ├── System.Net.Http.WebRequest.dll
│ │ ├── System.Net.Http.WebRequest.xml
│ │ ├── System.Net.Http.dll
│ │ ├── System.Net.Http.xml
│ │ └── zh-Hans
│ │ ├── System.Net.Http.WebRequest.resources.dll
│ │ ├── System.Net.Http.WebRequest.xml
│ │ ├── System.Net.Http.resources.dll
│ │ └── System.Net.Http.xml
│ └── net45
│ └── _._
├── Microsoft.Net.Http.zh-Hans.2.0.20710.0
│ ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg
│ ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0.nuspec
│ └── lib
│ └── net40
│ └── zh-Hans
│ ├── System.Net.Http.WebRequest.resources.dll
│ ├── System.Net.Http.WebRequest.xml
│ ├── System.Net.Http.resources.dll
│ └── System.Net.Http.xml
├── Microsoft.Web.Infrastructure.1.0.0.0
│ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ ├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec
│ └── lib
│ └── net40
│ └── Microsoft.Web.Infrastructure.dll
├── Modernizr.2.6.2
│ ├── Content
│ │ └── Scripts
│ │ └── modernizr-2.6.2.js
│ ├── Modernizr.2.6.2.nupkg
│ └── Tools
│ ├── common.ps1
│ ├── install.ps1
│ └── uninstall.ps1
├── Newtonsoft.Json.4.5.11
│ ├── Newtonsoft.Json.4.5.11.nupkg
│ ├── Newtonsoft.Json.4.5.11.nuspec
│ └── lib
│ ├── net20
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net35
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net40
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── portable-net40%2Bsl4%2Bwp7%2Bwin8
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── portable-net40 sl4 wp7 win8
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── sl3-wp
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── sl4
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── sl4-windowsphone71
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── winrt45
│ ├── Newtonsoft.Json.dll
│ └── Newtonsoft.Json.xml
├── Newtonsoft.Json.5.0.8
│ ├── Newtonsoft.Json.5.0.8.nupkg
│ ├── Newtonsoft.Json.5.0.8.nuspec
│ ├── 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
│ └── tools
│ └── install.ps1
├── Newtonsoft.Json.8.0.3
│ ├── Newtonsoft.Json.8.0.3.nupkg
│ ├── 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
│ │ ├── portable-net40 sl5 wp80 win8 wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── portable-net45 wp80 win8 wpa81 dnxcore50
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── tools
│ └── install.ps1
├── WebGrease.1.5.2
│ ├── WebGrease.1.5.2.nupkg
│ ├── WebGrease.1.5.2.nuspec
│ ├── lib
│ │ └── WebGrease.dll
│ └── tools
│ ├── WG.exe
│ ├── install.ps1
│ └── uninstall.ps1
├── bootstrap.3.0.0
│ ├── bootstrap.3.0.0.nupkg
│ └── content
│ ├── Content
│ │ ├── bootstrap.css
│ │ └── bootstrap.min.css
│ ├── Scripts
│ │ ├── bootstrap.js
│ │ └── bootstrap.min.js
│ └── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── jQuery.1.10.2
│ ├── Content
│ │ └── Scripts
│ │ ├── jquery-1.10.2-vsdoc.js
│ │ ├── jquery-1.10.2.js
│ │ ├── jquery-1.10.2.min.js
│ │ └── jquery-1.10.2.min.map
│ ├── Tools
│ │ ├── common.ps1
│ │ ├── install.ps1
│ │ ├── jquery-1.10.2.intellisense.js
│ │ └── uninstall.ps1
│ └── jQuery.1.10.2.nupkg
└── repositories.config
421 directories, 1613 files
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)