实例介绍
(菜鸟要飞系列)二,基于Asp.Net MVC5的后台管理系统(实现用户的增删改查)
【实例截图】
【核心代码】
4744300845155286249.zip
└── MatrixAdmin
├── MatrixAdmin
│ ├── App_Data
│ ├── App_Start
│ │ ├── BundleConfig.cs
│ │ ├── FilterConfig.cs
│ │ ├── RouteConfig.cs
│ │ ├── Startup.Auth.cs
│ │ └── WebApiConfig.cs
│ ├── Areas
│ │ └── Member
│ │ ├── Controllers
│ │ │ ├── _AdminController.cs
│ │ │ ├── ErrorController.cs
│ │ │ └── _HomeController.cs
│ │ ├── MemberAreaRegistration.cs
│ │ ├── Models
│ │ │ ├── LoginViewModel.cs
│ │ │ └── UserModel.cs
│ │ └── Views
│ │ ├── _Admin
│ │ │ └── Index.cshtml
│ │ ├── Error
│ │ │ └── ErrorNotFind.cshtml
│ │ ├── _Home
│ │ │ ├── Delete.cshtml
│ │ │ ├── DeleteInfo.cshtml
│ │ │ ├── Details.cshtml
│ │ │ ├── Edit.cshtml
│ │ │ ├── EditInfo.cshtml
│ │ │ ├── Index.cshtml
│ │ │ ├── Login.cshtml
│ │ │ ├── SelectAll.cshtml
│ │ │ └── SideBarMenuPartialView.cshtml
│ │ ├── Shared
│ │ └── web.config
│ ├── bin
│ │ ├── Antlr3.Runtime.dll
│ │ ├── Antlr3.Runtime.pdb
│ │ ├── MatrixAdmin.dll
│ │ ├── MatrixAdmin.dll.config
│ │ ├── MatrixAdmin.pdb
│ │ ├── Matrix.Core.dll
│ │ ├── Matrix.Core.pdb
│ │ ├── Microsoft.AspNet.Identity.Core.dll
│ │ ├── Microsoft.AspNet.Identity.Core.xml
│ │ ├── Microsoft.AspNet.Identity.EntityFramework.dll
│ │ ├── Microsoft.AspNet.Identity.EntityFramework.xml
│ │ ├── Microsoft.AspNet.Identity.Owin.dll
│ │ ├── Microsoft.AspNet.Identity.Owin.xml
│ │ ├── Microsoft.Owin.dll
│ │ ├── Microsoft.Owin.Host.SystemWeb.dll
│ │ ├── Microsoft.Owin.Host.SystemWeb.xml
│ │ ├── Microsoft.Owin.Security.Cookies.dll
│ │ ├── Microsoft.Owin.Security.Cookies.xml
│ │ ├── Microsoft.Owin.Security.dll
│ │ ├── Microsoft.Owin.Security.Facebook.dll
│ │ ├── Microsoft.Owin.Security.Facebook.xml
│ │ ├── Microsoft.Owin.Security.Google.dll
│ │ ├── Microsoft.Owin.Security.Google.xml
│ │ ├── Microsoft.Owin.Security.MicrosoftAccount.dll
│ │ ├── Microsoft.Owin.Security.MicrosoftAccount.xml
│ │ ├── Microsoft.Owin.Security.OAuth.dll
│ │ ├── Microsoft.Owin.Security.OAuth.xml
│ │ ├── Microsoft.Owin.Security.Twitter.dll
│ │ ├── Microsoft.Owin.Security.Twitter.xml
│ │ ├── Microsoft.Owin.Security.xml
│ │ ├── Microsoft.Owin.xml
│ │ ├── Microsoft.Threading.Tasks.dll
│ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll
│ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml
│ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ ├── Microsoft.Threading.Tasks.xml
│ │ ├── Microsoft.Web.Infrastructure.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Newtonsoft.Json.xml
│ │ ├── Owin.dll
│ │ ├── System.Net.Http.Formatting.dll
│ │ ├── System.Net.Http.Formatting.xml
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.Http.dll
│ │ ├── System.Web.Http.WebHost.dll
│ │ ├── System.Web.Http.WebHost.xml
│ │ ├── 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.dll
│ │ ├── System.Web.WebPages.Razor.dll
│ │ ├── System.Web.WebPages.Razor.xml
│ │ ├── System.Web.WebPages.xml
│ │ ├── Webdiyer.MvcPager.dll
│ │ ├── Webdiyer.MvcPager.pdb
│ │ ├── Webdiyer.MvcPager.xml
│ │ ├── WebGrease.dll
│ │ ├── zh-CHS
│ │ │ └── Webdiyer.MvcPager.resources.dll
│ │ └── zh-CHT
│ │ └── Webdiyer.MvcPager.resources.dll
│ ├── Content
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap-responsive.min.css
│ │ │ ├── bootstrap-wysihtml5.css
│ │ │ ├── colorpicker.css
│ │ │ ├── datepicker.css
│ │ │ ├── fullcalendar.css
│ │ │ ├── jquery.gritter.css
│ │ │ ├── jquery.pagination.css
│ │ │ ├── matrix-login.css
│ │ │ ├── matrix-media.css
│ │ │ ├── matrix-style.css
│ │ │ ├── select2.css
│ │ │ └── uniform.css
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ ├── Descr.WD3
│ │ │ │ └── font-awesome.css
│ │ │ └── font
│ │ │ ├── Descr.WD3
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.eot@
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── images
│ │ │ ├── backgrounds
│ │ │ │ ├── blank2
│ │ │ │ ├── calActiveBg.html
│ │ │ │ ├── Descr.WD3
│ │ │ │ └── skype_3Asuniljoshi19@call
│ │ │ └── gallery
│ │ │ └── imgbox3.html
│ │ ├── img
│ │ │ ├── alpha.html
│ │ │ ├── breadcrumb.png
│ │ │ ├── demo
│ │ │ │ ├── av1.jpg
│ │ │ │ ├── av2.jpg
│ │ │ │ ├── av3.jpg
│ │ │ │ ├── av4.jpg
│ │ │ │ ├── av5.jpg
│ │ │ │ ├── demo-image1.jpg
│ │ │ │ ├── demo-image2.jpg
│ │ │ │ ├── demo-image3.jpg
│ │ │ │ ├── Descr.WD3
│ │ │ │ └── envelope.png
│ │ │ ├── Descr.WD3
│ │ │ ├── gallery
│ │ │ │ ├── Descr.WD3
│ │ │ │ ├── imgbox1.jpg
│ │ │ │ ├── imgbox2.jpg
│ │ │ │ ├── imgbox3.jpg
│ │ │ │ ├── imgbox4.jpg
│ │ │ │ └── imgbox5.jpg
│ │ │ ├── glyphicons-halflings.html
│ │ │ ├── glyphicons-halflings-white.png
│ │ │ ├── gritter.png
│ │ │ ├── hue.png
│ │ │ ├── larrow.png
│ │ │ ├── line.png
│ │ │ ├── logo.png
│ │ │ ├── menu-active.png
│ │ │ ├── rarrow.png
│ │ │ ├── saturation.png
│ │ │ ├── select2.png
│ │ │ ├── spinner.gif
│ │ │ └── sprite.png
│ │ ├── PagedList.css
│ │ ├── pagerstyles.css
│ │ ├── sinorca-print.css
│ │ ├── sinorca-screen-alt.css
│ │ ├── sinorca-screen.css
│ │ └── Site.css
│ ├── Controllers
│ │ └── HomeController.cs
│ ├── favicon.ico
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── MatrixAdmin.csproj
│ ├── MatrixAdmin.csproj.user
│ ├── Models
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MatrixAdmin.csproj.FileListAbsolute.txt
│ │ ├── MatrixAdmin.csprojResolveAssemblyReference.cache
│ │ ├── MatrixAdmin.dll
│ │ ├── MatrixAdmin.pdb
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── TempPE
│ ├── packages.config
│ ├── Project_Readme.html
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── 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
│ │ ├── jquery.pagination-1.2.1.js
│ │ ├── jquery.unobtrusive-ajax.js
│ │ ├── jquery.unobtrusive-ajax.min.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ ├── jquery.validate.unobtrusive.js
│ │ ├── jquery.validate.unobtrusive.min.js
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── js
│ │ │ ├── bootstrap-colorpicker.js
│ │ │ ├── bootstrap-datepicker.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── bootstrap-wysihtml5.js
│ │ │ ├── excanvas.min.js
│ │ │ ├── fullcalendar.min.js
│ │ │ ├── jquery.dataTables.min.js
│ │ │ ├── jquery.flot.min.js
│ │ │ ├── jquery.flot.pie.min.js
│ │ │ ├── jquery.flot.resize.min.js
│ │ │ ├── jquery.gritter.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.peity.min.js
│ │ │ ├── jquery.toggle.buttons.html
│ │ │ ├── jquery.ui.custom.js
│ │ │ ├── jquery.uniform.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── jquery.wizard.js
│ │ │ ├── maruti.html
│ │ │ ├── masked.js
│ │ │ ├── matrix.calendar.js
│ │ │ ├── matrix.charts.js
│ │ │ ├── matrix.chat.js
│ │ │ ├── matrix.dashboard.js
│ │ │ ├── matrix.form_common.js
│ │ │ ├── matrix.form_validation.js
│ │ │ ├── matrix.interface.js
│ │ │ ├── matrix.js
│ │ │ ├── matrix.login.js
│ │ │ ├── matrix.popover.js
│ │ │ ├── matrix.tables.js
│ │ │ ├── matrix.wizard.js
│ │ │ ├── select2.min.js
│ │ │ └── wysihtml5-0.3.0.js
│ │ ├── modernizr-2.6.2.js
│ │ ├── MvcPager.js
│ │ ├── npm.js
│ │ ├── _references.js
│ │ ├── respond.js
│ │ └── respond.min.js
│ ├── Startup.cs
│ ├── Views
│ │ ├── Account
│ │ │ ├── ConfirmEmail.cshtml
│ │ │ ├── ExternalLoginConfirmation.cshtml
│ │ │ ├── ExternalLoginFailure.cshtml
│ │ │ ├── _ExternalLoginsListPartial.cshtml
│ │ │ ├── ForgotPasswordConfirmation.cshtml
│ │ │ ├── ForgotPassword.cshtml
│ │ │ ├── Login.cshtml
│ │ │ ├── Register.cshtml
│ │ │ ├── ResetPasswordConfirmation.cshtml
│ │ │ ├── ResetPassword.cshtml
│ │ │ ├── SendCode.cshtml
│ │ │ └── VerifyCode.cshtml
│ │ ├── Home
│ │ │ ├── About.cshtml
│ │ │ ├── Contact.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Manage
│ │ │ ├── AddPhoneNumber.cshtml
│ │ │ ├── ChangePassword.cshtml
│ │ │ ├── Index.cshtml
│ │ │ ├── ManageLogins.cshtml
│ │ │ ├── SetPassword.cshtml
│ │ │ └── VerifyPhoneNumber.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ ├── _Layout.cshtml
│ │ │ ├── Lockout.cshtml
│ │ │ └── _LoginPartial.cshtml
│ │ ├── SideBarView
│ │ ├── _ViewStart.cshtml
│ │ └── Web.config
│ ├── Web.config
│ ├── Web.Debug.config
│ └── Web.Release.config
├── MatrixAdmin.sln
├── MatrixAdmin.v12.suo
├── Matrix.Core
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Matrix.Core.dll
│ │ │ └── Matrix.Core.pdb
│ │ └── Release
│ ├── DBUtility
│ │ └── OracleHepler.cs
│ ├── Extensions
│ ├── Manager
│ │ └── UserManager.cs
│ ├── Matrix.Core.csproj
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Matrix.Core.csproj.FileListAbsolute.txt
│ │ ├── Matrix.Core.csprojResolveAssemblyReference.cache
│ │ ├── Matrix.Core.dll
│ │ ├── Matrix.Core.pdb
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Surity
│ │ └── Surity.cs
│ └── Types
│ ├── Paging.cs
│ └── _Response.cs
└── packages
├── Antlr.3.4.1.9004
│ ├── Antlr.3.4.1.9004.nupkg
│ └── lib
│ ├── Antlr3.Runtime.dll
│ └── Antlr3.Runtime.pdb
├── bootstrap.3.0.0
│ ├── bootstrap.3.0.0.nupkg
│ └── content
│ ├── Content
│ │ ├── bootstrap.css
│ │ └── bootstrap.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ └── Scripts
│ ├── bootstrap.js
│ └── bootstrap.min.js
├── EntityFramework.6.1.3
│ ├── content
│ │ ├── App.config.transform
│ │ └── Web.config.transform
│ ├── EntityFramework.6.1.3.nupkg
│ ├── lib
│ │ ├── net40
│ │ │ ├── EntityFramework.dll
│ │ │ ├── EntityFramework.SqlServer.dll
│ │ │ ├── EntityFramework.SqlServer.xml
│ │ │ └── EntityFramework.xml
│ │ └── net45
│ │ ├── EntityFramework.dll
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ └── EntityFramework.xml
│ └── tools
│ ├── about_EntityFramework.help.txt
│ ├── EntityFramework.PowerShell.dll
│ ├── EntityFramework.PowerShell.Utility.dll
│ ├── EntityFramework.psd1
│ ├── EntityFramework.psm1
│ ├── init.ps1
│ ├── install.ps1
│ └── migrate.exe
├── jQuery.1.10.2
│ ├── Content
│ │ └── Scripts
│ │ ├── jquery-1.10.2.js
│ │ ├── jquery-1.10.2.min.js
│ │ ├── jquery-1.10.2.min.map
│ │ └── jquery-1.10.2-vsdoc.js
│ ├── jQuery.1.10.2.nupkg
│ └── Tools
│ ├── common.ps1
│ ├── install.ps1
│ ├── jquery-1.10.2.intellisense.js
│ └── uninstall.ps1
├── jQuery.Validation.1.11.1
│ ├── Content
│ │ └── Scripts
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ └── jquery.validate-vsdoc.js
│ └── jQuery.Validation.1.11.1.nupkg
├── Microsoft.AspNet.Identity.Core.2.2.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.AspNet.Identity.Core.dll
│ │ └── Microsoft.AspNet.Identity.Core.xml
│ └── Microsoft.AspNet.Identity.Core.2.2.1.nupkg
├── Microsoft.AspNet.Identity.EntityFramework.2.2.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.AspNet.Identity.EntityFramework.dll
│ │ └── Microsoft.AspNet.Identity.EntityFramework.xml
│ └── Microsoft.AspNet.Identity.EntityFramework.2.2.1.nupkg
├── Microsoft.AspNet.Identity.Owin.2.2.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.AspNet.Identity.Owin.dll
│ │ └── Microsoft.AspNet.Identity.Owin.xml
│ └── Microsoft.AspNet.Identity.Owin.2.2.1.nupkg
├── Microsoft.AspNet.Mvc.5.2.3
│ ├── Content
│ │ ├── Web.config.install.xdt
│ │ └── Web.config.uninstall.xdt
│ ├── lib
│ │ └── net45
│ │ ├── System.Web.Mvc.dll
│ │ └── System.Web.Mvc.xml
│ └── Microsoft.AspNet.Mvc.5.2.3.nupkg
├── Microsoft.AspNet.Razor.3.2.3
│ ├── lib
│ │ └── net45
│ │ ├── System.Web.Razor.dll
│ │ └── System.Web.Razor.xml
│ └── Microsoft.AspNet.Razor.3.2.3.nupkg
├── Microsoft.AspNet.WebApi.5.2.3
│ └── Microsoft.AspNet.WebApi.5.2.3.nupkg
├── Microsoft.AspNet.WebApi.Client.5.2.3
│ ├── lib
│ │ ├── net45
│ │ │ ├── System.Net.Http.Formatting.dll
│ │ │ └── System.Net.Http.Formatting.xml
│ │ └── portable-wp8%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81
│ │ ├── System.Net.Http.Formatting.dll
│ │ └── System.Net.Http.Formatting.xml
│ └── Microsoft.AspNet.WebApi.Client.5.2.3.nupkg
├── Microsoft.AspNet.WebApi.Core.5.2.3
│ ├── Content
│ │ └── web.config.transform
│ ├── lib
│ │ └── net45
│ │ ├── System.Web.Http.dll
│ │ └── System.Web.Http.xml
│ └── Microsoft.AspNet.WebApi.Core.5.2.3.nupkg
├── Microsoft.AspNet.WebApi.WebHost.5.2.3
│ ├── lib
│ │ └── net45
│ │ ├── System.Web.Http.WebHost.dll
│ │ └── System.Web.Http.WebHost.xml
│ └── Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg
├── Microsoft.AspNet.Web.Optimization.1.1.3
│ ├── lib
│ │ └── net40
│ │ ├── System.Web.Optimization.dll
│ │ └── system.web.optimization.xml
│ └── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg
├── Microsoft.AspNet.WebPages.3.2.3
│ ├── Content
│ │ ├── Web.config.install.xdt
│ │ └── Web.config.uninstall.xdt
│ ├── lib
│ │ └── net45
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.WebPages.Deployment.dll
│ │ ├── System.Web.WebPages.Deployment.xml
│ │ ├── System.Web.WebPages.dll
│ │ ├── System.Web.WebPages.Razor.dll
│ │ ├── System.Web.WebPages.Razor.xml
│ │ └── System.Web.WebPages.xml
│ └── Microsoft.AspNet.WebPages.3.2.3.nupkg
├── Microsoft.Bcl.1.1.8
│ ├── content
│ │ ├── net45
│ │ │ └── _._
│ │ ├── portable-net451+win81
│ │ │ └── _._
│ │ ├── portable-net451+win81+wpa81
│ │ │ └── _._
│ │ ├── portable-net45+win8+wp8+wpa81
│ │ │ └── _._
│ │ ├── portable-net45+win8+wpa81
│ │ │ └── _._
│ │ ├── portable-win81+wp81+wpa81
│ │ │ └── _._
│ │ ├── sl4
│ │ │ └── _._
│ │ ├── sl5
│ │ │ └── _._
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp8
│ │ │ └── _._
│ │ └── wpa81
│ │ └── _._
│ ├── lib
│ │ ├── net40
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── net45
│ │ │ └── _._
│ │ ├── portable-net40+sl4+win8
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── portable-net40+sl4+win8+wp71+wpa81
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── portable-net40+sl4+win8+wp8+wpa81
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── portable-net40+sl5+win8+wp8+wpa81
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── portable-net40+win8
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── portable-net40+win8+wp8+wpa81
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── portable-net451+win81
│ │ │ └── _._
│ │ ├── portable-net451+win81+wpa81
│ │ │ └── _._
│ │ ├── portable-net45+win8+wp8+wpa81
│ │ │ └── _._
│ │ ├── portable-net45+win8+wpa81
│ │ │ └── _._
│ │ ├── portable-win81+wp81+wpa81
│ │ │ └── _._
│ │ ├── sl4
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── sl4-windowsphone71
│ │ │ ├── ensureRedirect.xml
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── sl5
│ │ │ ├── System.IO.dll
│ │ │ ├── System.IO.xml
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.xml
│ │ │ ├── System.Threading.Tasks.dll
│ │ │ └── System.Threading.Tasks.xml
│ │ ├── win8
│ │ │ └── _._
│ │ ├── wp8
│ │ │ └── _._
│ │ └── wpa81
│ │ └── _._
│ ├── License-Stable.rtf
│ └── Microsoft.Bcl.1.1.8.nupkg
├── Microsoft.Bcl.Async.1.0.168
│ ├── lib
│ │ ├── net40
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── portable-net40+sl4+win8+wp71+wpa81
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── portable-net45+win8+wp8+wpa81
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── portable-net45+win8+wpa81
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── sl4
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.xml
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── sl4-windowsphone71
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── win8
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ ├── wp8
│ │ │ ├── Microsoft.Threading.Tasks.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml
│ │ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ │ └── Microsoft.Threading.Tasks.xml
│ │ └── wpa81
│ │ ├── Microsoft.Threading.Tasks.dll
│ │ ├── Microsoft.Threading.Tasks.Extensions.dll
│ │ ├── Microsoft.Threading.Tasks.Extensions.xml
│ │ └── Microsoft.Threading.Tasks.xml
│ ├── License-Stable.rtf
│ └── Microsoft.Bcl.Async.1.0.168.nupkg
├── Microsoft.Bcl.Build.1.0.14
│ ├── content
│ │ ├── net40
│ │ │ └── _._
│ │ ├── netcore45
│ │ │ └── _._
│ │ ├── portable-net40+win8+sl4+wp71+wpa81
│ │ │ └── _._
│ │ ├── sl4
│ │ │ └── _._
│ │ └── sl4-windowsphone71
│ │ └── _._
│ ├── License-Stable.rtf
│ ├── Microsoft.Bcl.Build.1.0.14.nupkg
│ └── tools
│ ├── Install.ps1
│ ├── Microsoft.Bcl.Build.targets
│ ├── Microsoft.Bcl.Build.Tasks.dll
│ └── Uninstall.ps1
├── Microsoft.jQuery.Unobtrusive.Validation.3.2.3
│ ├── Content
│ │ └── Scripts
│ │ ├── jquery.validate.unobtrusive.js
│ │ └── jquery.validate.unobtrusive.min.js
│ └── Microsoft.jQuery.Unobtrusive.Validation.3.2.3.nupkg
├── Microsoft.Owin.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.dll
│ │ └── Microsoft.Owin.XML
│ └── Microsoft.Owin.3.0.1.nupkg
├── Microsoft.Owin.Host.SystemWeb.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Host.SystemWeb.dll
│ │ └── Microsoft.Owin.Host.SystemWeb.xml
│ └── Microsoft.Owin.Host.SystemWeb.3.0.1.nupkg
├── Microsoft.Owin.Security.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.dll
│ │ └── Microsoft.Owin.Security.XML
│ └── Microsoft.Owin.Security.3.0.1.nupkg
├── Microsoft.Owin.Security.Cookies.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.Cookies.dll
│ │ └── Microsoft.Owin.Security.Cookies.xml
│ └── Microsoft.Owin.Security.Cookies.3.0.1.nupkg
├── Microsoft.Owin.Security.Facebook.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.Facebook.dll
│ │ └── Microsoft.Owin.Security.Facebook.XML
│ └── Microsoft.Owin.Security.Facebook.3.0.1.nupkg
├── Microsoft.Owin.Security.Google.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.Google.dll
│ │ └── Microsoft.Owin.Security.Google.XML
│ └── Microsoft.Owin.Security.Google.3.0.1.nupkg
├── Microsoft.Owin.Security.MicrosoftAccount.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.MicrosoftAccount.dll
│ │ └── Microsoft.Owin.Security.MicrosoftAccount.XML
│ └── Microsoft.Owin.Security.MicrosoftAccount.3.0.1.nupkg
├── Microsoft.Owin.Security.OAuth.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.OAuth.dll
│ │ └── Microsoft.Owin.Security.OAuth.XML
│ └── Microsoft.Owin.Security.OAuth.3.0.1.nupkg
├── Microsoft.Owin.Security.Twitter.3.0.1
│ ├── lib
│ │ └── net45
│ │ ├── Microsoft.Owin.Security.Twitter.dll
│ │ └── Microsoft.Owin.Security.Twitter.XML
│ └── Microsoft.Owin.Security.Twitter.3.0.1.nupkg
├── Microsoft.Web.Infrastructure.1.0.0.0
│ ├── lib
│ │ └── net40
│ │ └── Microsoft.Web.Infrastructure.dll
│ └── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
├── 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.6.0.4
│ ├── 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%2Bsl5%2Bwp80%2Bwin8%2Bwpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── portable-net40+sl5+wp80+win8+wpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── portable-net45%2Bwp80%2Bwin8%2Bwpa81
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── portable-net45+wp80+win8+wpa81
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── Newtonsoft.Json.6.0.4.nupkg
│ └── tools
│ └── install.ps1
├── Owin.1.0
│ ├── lib
│ │ └── net40
│ │ └── Owin.dll
│ └── Owin.1.0.nupkg
├── PagedList.1.17.0.0
│ ├── lib
│ │ └── net40
│ │ ├── PagedList.dll
│ │ └── PagedList.xml
│ └── PagedList.1.17.0.0.nupkg
├── PagedList.Mvc.4.5.0.0
│ ├── Content
│ │ └── Content
│ │ └── PagedList.css
│ ├── lib
│ │ └── net40
│ │ ├── PagedList.Mvc.dll
│ │ └── PagedList.Mvc.XML
│ └── PagedList.Mvc.4.5.0.0.nupkg
├── repositories.config
├── Respond.1.2.0
│ ├── content
│ │ └── Scripts
│ │ ├── respond.js
│ │ └── respond.min.js
│ └── Respond.1.2.0.nupkg
├── WebGrease.1.5.2
│ ├── lib
│ │ └── WebGrease.dll
│ ├── tools
│ │ └── WG.exe
│ └── WebGrease.1.5.2.nupkg
├── X.PagedList.1.24.1.300
│ ├── lib
│ │ └── portable-net4+sl5+wp8+win8
│ │ └── X.PagedList.dll
│ └── X.PagedList.1.24.1.300.nupkg
└── X.PagedList.Mvc.4.9.1.310
├── Content
│ └── Content
│ └── PagedList.css
├── lib
│ └── net45
│ └── X.PagedList.Mvc.dll
└── X.PagedList.Mvc.4.9.1.310.nupkg
237 directories, 597 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论