├── .nuget
├── NuGet.exe
├── NuGet.Config
└── NuGet.targets
├── QuickBootstrap
├── Views
│ ├── _ViewStart.cshtml
│ ├── Shared
│ │ ├── _PartialTongJiCode.cshtml
│ │ ├── Error.cshtml
│ │ ├── _PartialPagingInfo.cshtml
│ │ └── _Layout.cshtml
│ ├── Profile
│ │ ├── Shared
│ │ │ └── _QuickMenu.cshtml
│ │ ├── Index.cshtml
│ │ └── ChangePassword.cshtml
│ ├── Home
│ │ ├── Index.cshtml
│ │ └── Login.cshtml
│ ├── UserManage
│ │ ├── Shared
│ │ │ └── _QuickMenu.cshtml
│ │ ├── Create.cshtml
│ │ └── Index.cshtml
│ └── Web.config
├── favicon.ico
├── Global.asax
├── Content
│ ├── img
│ │ └── page-bg-black.png
│ └── base.css
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── Services
│ ├── Util
│ │ ├── Paged.cs
│ │ ├── Paging.cs
│ │ ├── PagedResult.cs
│ │ ├── ServiceContext.cs
│ │ └── ValidateCodeHelper.cs
│ ├── IManageService.cs
│ ├── Models
│ │ └── UserManagePageItem.cs
│ ├── IUserManageService.cs
│ ├── IProfileService.cs
│ └── Impl
│ │ ├── ProfileService.cs
│ │ ├── ManageService.cs
│ │ └── UserManageService.cs
├── install.bat
├── Sessions
│ └── UserSession.cs
├── App_Start
│ ├── FilterConfig.cs
│ ├── RouteConfig.cs
│ └── BundleConfig.cs
├── Scripts
│ ├── base.js
│ ├── _references.js
│ ├── respond.min.js
│ ├── jquery.validate.unobtrusive.min.js
│ ├── respond.js
│ ├── jquery.validate.unobtrusive.js
│ └── jquery.validate.min.js
├── Extendsions
│ ├── IO
│ │ └── StreamExtensions.cs
│ ├── ImageExtendsions.cs
│ ├── ControllerExtendsions.cs
│ ├── ObjectExtendsions.cs
│ ├── ByteExtendsions.cs
│ ├── Linq
│ │ ├── ParameterRebinder.cs
│ │ └── PredicateBuilder.cs
│ ├── Web
│ │ └── HttpResponseExtendsions.cs
│ ├── StringExtendsions.cs
│ ├── DateTimeExtendsions.cs
│ └── PagingExtendsions.cs
├── Entities
│ ├── DefaultDbContext.cs
│ ├── InitData.cs
│ └── User.cs
├── Filters
│ ├── ValidateModelStateAttribute.cs
│ └── UserAuthorizationAttribute.cs
├── Cache
│ ├── EnyimMemcachedContext.cs
│ ├── RedisContext.cs
│ ├── CacheContext.cs
│ └── Extendsions
│ │ └── StackExchangeRedisExtensions.cs
├── Models
│ ├── HomeLoginRequest.cs
│ ├── UserCreateRequest.cs
│ ├── UserManageChangePassword.cs
│ └── ProfileChangePasswordRequest.cs
├── Web.Debug.config
├── Web.Release.config
├── Properties
│ └── AssemblyInfo.cs
├── Global.asax.cs
├── Controllers
│ ├── UserManageController.cs
│ ├── HomeController.cs
│ └── ProfileController.cs
├── packages.config
├── Web.config
└── QuickBootstrap.csproj
├── README.md
├── .gitignore
└── QuickBootstrap.sln
/.nuget/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smartbooks/QuickBootstrap/HEAD/.nuget/NuGet.exe
--------------------------------------------------------------------------------
/QuickBootstrap/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/QuickBootstrap/Views/Shared/_PartialTongJiCode.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = null;
3 | }
4 |
5 |
--------------------------------------------------------------------------------
/QuickBootstrap/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smartbooks/QuickBootstrap/HEAD/QuickBootstrap/favicon.ico
--------------------------------------------------------------------------------
/QuickBootstrap/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="QuickBootstrap.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/QuickBootstrap/Content/img/page-bg-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smartbooks/QuickBootstrap/HEAD/QuickBootstrap/Content/img/page-bg-black.png
--------------------------------------------------------------------------------
/QuickBootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smartbooks/QuickBootstrap/HEAD/QuickBootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/QuickBootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smartbooks/QuickBootstrap/HEAD/QuickBootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/QuickBootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smartbooks/QuickBootstrap/HEAD/QuickBootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/.nuget/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |