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