实例介绍
【实例简介】
CodeSmith生成MVC4项目工程模板V1.0.12.0920 模板工具:CodeSmith 6.5 CodeSmith生成Visual.Studio.2010.MVC4项目工程模板。 默认用户已经安装了CodeSmith 6.5代码生成工具。 根据输入参数,自动生成Visual Studio 2010 + MVC4 + EnterpriseLibrary5.0项目工程。 注意事项: 1:Visual Studio 2010需要安装SP1。并安装MVC4。具体操作请访问微软官方网站。 1:请在建立数据表时,给数据表的说明字段一个简要说明。在*.cs文件生成时会自动写入合
【实例截图】
【核心代码】
net4.0_MVC4_Entlib_V1.0.12.0920
└── net4.0 Framework Enterprise
├── Execute.cst
├── Generator.cs
├── Solution.cst
├── onehelper.Controllers
│ ├── AccountController.cst
│ ├── BaseController.cst
│ ├── ControllerProj.cst
│ ├── HomeController.cst
│ └── Properties
│ └── AssemblyInfo.cst
├── onehelper.Core
│ ├── Caching
│ │ ├── CacheBase.cst
│ │ └── IBusinessCache.cst
│ ├── Common
│ │ ├── AppSettings.cst
│ │ ├── EventArgsBase.cst
│ │ ├── FailedEventArgs.cst
│ │ ├── Json
│ │ │ └── JsonFormaterUtils.cst
│ │ ├── SaveAction.cst
│ │ ├── SavedEventArgs.cst
│ │ └── Utils.cst
│ ├── CoreProj.cst
│ ├── Injection
│ │ ├── ContainerContextBase.cst
│ │ ├── ContainerEventArgs.cst
│ │ ├── ContainerFailedEventArgs.cst
│ │ ├── ContainerManager.cst
│ │ ├── ContainerType.cst
│ │ ├── IContainerContext.cst
│ │ └── Unity
│ │ └── UnityContainerContext.cst
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ ├── Repository
│ │ ├── IRepositoryContext.cst
│ │ ├── RepositoryBase.cst
│ │ └── RepositoryContext.cst
│ ├── Resources.Designer.cst
│ ├── Resources.resx.cst
│ ├── Security
│ │ ├── CryptoFactory.cst
│ │ ├── CryptographyManager.cst
│ │ ├── Hash
│ │ │ ├── HashAlgorithmProvider.cst
│ │ │ ├── HashMD5.cst
│ │ │ ├── HashSHA1.cst
│ │ │ └── IHashAlgorithmCreate.cst
│ │ ├── ICryptographyProvider.cst
│ │ ├── NonCrypto
│ │ │ └── NonCryptoProvider.cst
│ │ ├── PasswordFormat.cst
│ │ └── Symmetric
│ │ ├── DESCreator.cst
│ │ ├── ISymmetricAlgorithmCreate.cst
│ │ ├── RC2Creator.cst
│ │ └── SymmetricAlgorithmProvider.cst
│ ├── Service
│ │ ├── BusinessBase.cst
│ │ ├── Extensions
│ │ │ ├── BusinessCollectionExtension.cst
│ │ │ └── BusinessContractExtension.cst
│ │ └── ServiceBase.cst
│ ├── StringHelper.cst
│ └── Validations
│ ├── IValidated.cst
│ ├── ModelStateDictionaryExtensions.cst
│ ├── ValidationExtensions.cst
│ └── ValidationUtility.cst
├── onehelper.Dao
│ ├── DaoProj.cst
│ ├── IEntityDao.cst
│ ├── IRepository.cst
│ ├── Impl
│ │ ├── Dynamic.cst
│ │ ├── EntityDaoImpl.cst
│ │ └── SqlRepositoryBase.cst
│ └── Properties
│ └── AssemblyInfo.cst
├── onehelper.Dto
│ ├── DtoProj.cst
│ ├── EntityBase.cst
│ ├── Models
│ │ └── EntityModel.cst
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ └── Tables
│ └── Entity.cst
├── onehelper.Library
│ ├── EntityFramework.dll
│ ├── EntityFramework.xml
│ ├── Microsoft.Practices.EnterpriseLibrary.Caching.Cryptography.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Caching.Database.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Caching.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapter.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapterV5.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.DesignTime.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.EnvironmentalOverrides.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.SqlCe.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WCF.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Logging.Database.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Logging.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.PolicyInjection.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.AzMan.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.Cache.CachingStore.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.AspNet.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WCF.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WPF.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.dll
│ ├── Microsoft.Practices.ServiceLocation.dll
│ ├── Microsoft.Practices.Unity.Configuration.dll
│ ├── Microsoft.Practices.Unity.Interception.Configuration.dll
│ ├── Microsoft.Practices.Unity.Interception.dll
│ ├── Microsoft.Practices.Unity.dll
│ ├── Microsoft.Web.Infrastructure.dll
│ ├── Microsoft.Web.Optimization.dll
│ ├── StringTemplate.dll
│ ├── System.Web.Helpers.dll
│ ├── System.Web.Mvc.dll
│ ├── System.Web.Providers.dll
│ ├── System.Web.Razor.dll
│ ├── System.Web.WebPages.Deployment.dll
│ ├── System.Web.WebPages.Razor.dll
│ ├── System.Web.WebPages.dll
│ ├── antlr.runtime.dll
│ ├── log4net.dll
│ └── repositories.config
├── onehelper.Service
│ ├── ContextService.cst
│ ├── IEntityService.cst
│ ├── Impl
│ │ └── EntityServiceImpl.cst
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ └── ServiceProj.cst
├── onehelper.WebClient
│ ├── Content
│ │ ├── Site.css
│ │ ├── layout.css
│ │ ├── patches
│ │ │ └── patch_layout.css
│ │ ├── screen
│ │ │ ├── basemod.css
│ │ │ ├── basemod_layout.css
│ │ │ └── content.css
│ │ └── themes
│ │ └── base
│ │ ├── images
│ │ │ ├── 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.accordion.css
│ │ ├── jquery.ui.all.css
│ │ ├── jquery.ui.autocomplete.css
│ │ ├── jquery.ui.base.css
│ │ ├── jquery.ui.button.css
│ │ ├── jquery.ui.core.css
│ │ ├── jquery.ui.datepicker.css
│ │ ├── jquery.ui.dialog.css
│ │ ├── jquery.ui.progressbar.css
│ │ ├── jquery.ui.resizable.css
│ │ ├── jquery.ui.selectable.css
│ │ ├── jquery.ui.slider.css
│ │ ├── jquery.ui.tabs.css
│ │ └── jquery.ui.theme.css
│ ├── Global.cs.cst
│ ├── Global.cst
│ ├── Images
│ │ ├── NuGetGallery.png
│ │ ├── accent.png
│ │ ├── aspNetHome.png
│ │ ├── bg_blue.png
│ │ ├── bg_header.png
│ │ ├── bullet.png
│ │ ├── facebook.png
│ │ ├── findHosting.png
│ │ ├── heroAccent.png
│ │ ├── onehelper.png
│ │ ├── orderedList.png
│ │ ├── orderedListFive.png
│ │ ├── orderedListFour.png
│ │ ├── orderedListOne.png
│ │ ├── orderedListSix.png
│ │ ├── orderedListThree.png
│ │ ├── orderedListTwo.png
│ │ ├── twitter.png
│ │ └── windowsLive.png
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ ├── Scripts
│ │ ├── AjaxLogin.js
│ │ ├── jquery-1.6.2-vsdoc.js
│ │ ├── jquery-1.6.2.js
│ │ ├── jquery-1.6.2.min.js
│ │ ├── jquery-ui-1.8.11.js
│ │ ├── jquery-ui-1.8.11.min.js
│ │ ├── jquery.unobtrusive-ajax.js
│ │ ├── jquery.unobtrusive-ajax.min.js
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ ├── jquery.validate.unobtrusive.js
│ │ ├── jquery.validate.unobtrusive.min.js
│ │ ├── knockout-1.3.0beta.debug.js
│ │ ├── knockout-1.3.0beta.js
│ │ ├── modernizr-2.0.6-development-only.js
│ │ └── yaml
│ │ ├── ftod.js
│ │ ├── lib
│ │ │ ├── jquery-1.6.1.js
│ │ │ └── jquery-1.6.1.min.js
│ │ ├── minmax.js
│ │ └── yaml
│ │ ├── add-ons
│ │ │ ├── accessible-tabs
│ │ │ │ ├── jquery.tabs.js
│ │ │ │ ├── jquery.tabs.min.js
│ │ │ │ └── tabs.css
│ │ │ ├── microformats
│ │ │ │ ├── images
│ │ │ │ │ ├── external_link.png
│ │ │ │ │ ├── hcalendar.png
│ │ │ │ │ ├── hcard.png
│ │ │ │ │ ├── icon-geo.png
│ │ │ │ │ ├── icon-hatom.png
│ │ │ │ │ ├── icon-haudio.png
│ │ │ │ │ ├── icon-hcalendar-add.png
│ │ │ │ │ ├── icon-hcalendar-download.png
│ │ │ │ │ ├── icon-hcalendar.png
│ │ │ │ │ ├── icon-hcard-add.png
│ │ │ │ │ ├── icon-hcard-download.png
│ │ │ │ │ ├── icon-hcard.png
│ │ │ │ │ ├── icon-hresume.png
│ │ │ │ │ ├── icon-rel-tag.png
│ │ │ │ │ ├── icon-xfn.png
│ │ │ │ │ └── xfn
│ │ │ │ │ ├── xfn-child.png
│ │ │ │ │ ├── xfn-colleague-met.png
│ │ │ │ │ ├── xfn-colleague.png
│ │ │ │ │ ├── xfn-friend-met.png
│ │ │ │ │ ├── xfn-friend.png
│ │ │ │ │ ├── xfn-mail.png
│ │ │ │ │ ├── xfn-me.png
│ │ │ │ │ ├── xfn-parent.png
│ │ │ │ │ ├── xfn-small.png
│ │ │ │ │ ├── xfn-spouse.png
│ │ │ │ │ ├── xfn-sweetheart-met.png
│ │ │ │ │ └── xfn-sweetheart.png
│ │ │ │ └── microformats.css
│ │ │ ├── rtl-support
│ │ │ │ ├── core
│ │ │ │ │ ├── base-rtl.css
│ │ │ │ │ ├── iehacks-rtl.css
│ │ │ │ │ ├── slim_base-rtl.css
│ │ │ │ │ └── slim_iehacks-rtl.css
│ │ │ │ └── navigation
│ │ │ │ ├── nav_shinybuttons-rtl.css
│ │ │ │ ├── nav_slidingdoor-rtl.css
│ │ │ │ └── nav_vlist-rtl.css
│ │ │ └── syncheight
│ │ │ └── jquery.syncheight.js
│ │ ├── central_draft.css
│ │ ├── core
│ │ │ ├── base.css
│ │ │ ├── iehacks.css
│ │ │ ├── js
│ │ │ │ └── yaml-focusfix.js
│ │ │ ├── slim_base.css
│ │ │ └── slim_iehacks.css
│ │ ├── markup_draft.html
│ │ ├── navigation
│ │ │ ├── images
│ │ │ │ ├── shiny_buttons
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── background.png
│ │ │ │ │ └── background_active.png
│ │ │ │ ├── sliding_door
│ │ │ │ │ └── round
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── left.png
│ │ │ │ │ ├── left_on.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── right_on.png
│ │ │ │ └── vlist
│ │ │ │ └── square
│ │ │ │ ├── node.gif
│ │ │ │ ├── node_minus.gif
│ │ │ │ ├── node_plus.gif
│ │ │ │ ├── subnode.gif
│ │ │ │ ├── subnode_minus.gif
│ │ │ │ └── subnode_plus.gif
│ │ │ ├── nav_shinybuttons.css
│ │ │ ├── nav_slidingdoor.css
│ │ │ └── nav_vlist.css
│ │ ├── patches
│ │ │ ├── patch_layout_draft.css
│ │ │ └── patch_nav_vlist.css
│ │ ├── print
│ │ │ ├── print_003_draft.css
│ │ │ ├── print_020_draft.css
│ │ │ ├── print_023_draft.css
│ │ │ ├── print_100_draft.css
│ │ │ ├── print_103_draft.css
│ │ │ ├── print_120_draft.css
│ │ │ ├── print_123_draft.css
│ │ │ └── print_draft.css
│ │ └── screen
│ │ ├── basemod_draft.css
│ │ ├── content_default.css
│ │ ├── forms.css
│ │ └── images
│ │ ├── button_gray.png
│ │ ├── button_red.png
│ │ └── button_yellow.png
│ ├── Views
│ │ ├── Account
│ │ │ ├── ChangePassword.cshtml
│ │ │ ├── ChangePasswordSuccess.cshtml
│ │ │ ├── LogOn.cshtml
│ │ │ └── Register.cshtml
│ │ ├── Home
│ │ │ ├── About.cshtml
│ │ │ ├── Contact.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ ├── _Layout.cshtml
│ │ │ └── _LogOnPartial.cshtml
│ │ ├── Web.config
│ │ └── _ViewStart.cshtml
│ ├── WebProj.cst
│ ├── web.Debug.config.cst
│ ├── web.Release.config.cst
│ ├── web.config.cst
│ └── yaml.4.0.1
│ ├── License.txt
│ ├── assets
│ │ ├── css
│ │ │ ├── layout.css
│ │ │ └── screen.css
│ │ ├── images
│ │ │ ├── Thumbs.db
│ │ │ ├── demo-custom-grid.png
│ │ │ ├── demo-flex-column.png
│ │ │ ├── demo-flex-grid.png
│ │ │ ├── demo-rtl.png
│ │ │ ├── yaml-solo-transparent-small.png
│ │ │ └── yaml-solo-transparent.png
│ │ └── js
│ │ ├── domscript.js
│ │ ├── jquery.gridbuilder.js
│ │ └── snippet
│ │ ├── ZeroClipboard.swf
│ │ ├── jquery.snippet.css
│ │ ├── jquery.snippet.js
│ │ ├── jquery.snippet.min.css
│ │ ├── jquery.snippet.min.js
│ │ └── snippet.css
│ ├── index.html
│ ├── lib
│ │ └── jquery-1.7.1.min.js
│ └── yaml
│ ├── add-ons
│ │ ├── accessible-tabs
│ │ │ ├── jquery.tabs.js
│ │ │ └── tabs.css
│ │ ├── microformats
│ │ │ ├── icons
│ │ │ │ ├── external_link.png
│ │ │ │ ├── hcalendar.png
│ │ │ │ ├── hcard.png
│ │ │ │ ├── icon-geo.png
│ │ │ │ ├── icon-hatom.png
│ │ │ │ ├── icon-haudio.png
│ │ │ │ ├── icon-hcalendar-add.png
│ │ │ │ ├── icon-hcalendar-download.png
│ │ │ │ ├── icon-hcalendar.png
│ │ │ │ ├── icon-hcard-add.png
│ │ │ │ ├── icon-hcard-download.png
│ │ │ │ ├── icon-hcard.png
│ │ │ │ ├── icon-hresume.png
│ │ │ │ ├── icon-rel-tag.png
│ │ │ │ ├── icon-xfn.png
│ │ │ │ └── xfn
│ │ │ │ ├── xfn-child.png
│ │ │ │ ├── xfn-colleague-met.png
│ │ │ │ ├── xfn-colleague.png
│ │ │ │ ├── xfn-friend-met.png
│ │ │ │ ├── xfn-friend.png
│ │ │ │ ├── xfn-me.png
│ │ │ │ ├── xfn-parent.png
│ │ │ │ ├── xfn-small.png
│ │ │ │ ├── xfn-spouse.png
│ │ │ │ ├── xfn-sweetheart-met.png
│ │ │ │ └── xfn-sweetheart.png
│ │ │ └── microformats.css
│ │ ├── rtl-support
│ │ │ ├── core
│ │ │ │ ├── base-rtl.css
│ │ │ │ └── base-rtl.min.css
│ │ │ ├── navigation
│ │ │ │ ├── hlist-rtl.css
│ │ │ │ └── vlist-rtl.css
│ │ │ └── screen
│ │ │ └── typography-rtl.css
│ │ └── syncheight
│ │ └── jquery.syncheight.js
│ ├── core
│ │ ├── base.css
│ │ ├── base.min.css
│ │ ├── iehacks.css
│ │ ├── iehacks.min.css
│ │ └── js
│ │ └── yaml-focusfix.js
│ ├── forms
│ │ └── gray-theme.css
│ ├── navigation
│ │ ├── hlist.css
│ │ └── vlist.css
│ ├── print
│ │ └── print.css
│ └── screen
│ ├── grid-960-12.css
│ ├── grid-960-16.css
│ ├── screen-FULLPAGE-layout.css
│ ├── screen-PAGE-layout.css
│ └── typography.css
└── readme.txt
92 directories, 356 files
CodeSmith生成MVC4项目工程模板V1.0.12.0920 模板工具:CodeSmith 6.5 CodeSmith生成Visual.Studio.2010.MVC4项目工程模板。 默认用户已经安装了CodeSmith 6.5代码生成工具。 根据输入参数,自动生成Visual Studio 2010 + MVC4 + EnterpriseLibrary5.0项目工程。 注意事项: 1:Visual Studio 2010需要安装SP1。并安装MVC4。具体操作请访问微软官方网站。 1:请在建立数据表时,给数据表的说明字段一个简要说明。在*.cs文件生成时会自动写入合
【实例截图】
【核心代码】
net4.0_MVC4_Entlib_V1.0.12.0920
└── net4.0 Framework Enterprise
├── Execute.cst
├── Generator.cs
├── Solution.cst
├── onehelper.Controllers
│ ├── AccountController.cst
│ ├── BaseController.cst
│ ├── ControllerProj.cst
│ ├── HomeController.cst
│ └── Properties
│ └── AssemblyInfo.cst
├── onehelper.Core
│ ├── Caching
│ │ ├── CacheBase.cst
│ │ └── IBusinessCache.cst
│ ├── Common
│ │ ├── AppSettings.cst
│ │ ├── EventArgsBase.cst
│ │ ├── FailedEventArgs.cst
│ │ ├── Json
│ │ │ └── JsonFormaterUtils.cst
│ │ ├── SaveAction.cst
│ │ ├── SavedEventArgs.cst
│ │ └── Utils.cst
│ ├── CoreProj.cst
│ ├── Injection
│ │ ├── ContainerContextBase.cst
│ │ ├── ContainerEventArgs.cst
│ │ ├── ContainerFailedEventArgs.cst
│ │ ├── ContainerManager.cst
│ │ ├── ContainerType.cst
│ │ ├── IContainerContext.cst
│ │ └── Unity
│ │ └── UnityContainerContext.cst
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ ├── Repository
│ │ ├── IRepositoryContext.cst
│ │ ├── RepositoryBase.cst
│ │ └── RepositoryContext.cst
│ ├── Resources.Designer.cst
│ ├── Resources.resx.cst
│ ├── Security
│ │ ├── CryptoFactory.cst
│ │ ├── CryptographyManager.cst
│ │ ├── Hash
│ │ │ ├── HashAlgorithmProvider.cst
│ │ │ ├── HashMD5.cst
│ │ │ ├── HashSHA1.cst
│ │ │ └── IHashAlgorithmCreate.cst
│ │ ├── ICryptographyProvider.cst
│ │ ├── NonCrypto
│ │ │ └── NonCryptoProvider.cst
│ │ ├── PasswordFormat.cst
│ │ └── Symmetric
│ │ ├── DESCreator.cst
│ │ ├── ISymmetricAlgorithmCreate.cst
│ │ ├── RC2Creator.cst
│ │ └── SymmetricAlgorithmProvider.cst
│ ├── Service
│ │ ├── BusinessBase.cst
│ │ ├── Extensions
│ │ │ ├── BusinessCollectionExtension.cst
│ │ │ └── BusinessContractExtension.cst
│ │ └── ServiceBase.cst
│ ├── StringHelper.cst
│ └── Validations
│ ├── IValidated.cst
│ ├── ModelStateDictionaryExtensions.cst
│ ├── ValidationExtensions.cst
│ └── ValidationUtility.cst
├── onehelper.Dao
│ ├── DaoProj.cst
│ ├── IEntityDao.cst
│ ├── IRepository.cst
│ ├── Impl
│ │ ├── Dynamic.cst
│ │ ├── EntityDaoImpl.cst
│ │ └── SqlRepositoryBase.cst
│ └── Properties
│ └── AssemblyInfo.cst
├── onehelper.Dto
│ ├── DtoProj.cst
│ ├── EntityBase.cst
│ ├── Models
│ │ └── EntityModel.cst
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ └── Tables
│ └── Entity.cst
├── onehelper.Library
│ ├── EntityFramework.dll
│ ├── EntityFramework.xml
│ ├── Microsoft.Practices.EnterpriseLibrary.Caching.Cryptography.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Caching.Database.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Caching.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapter.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.Design.HostAdapterV5.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.DesignTime.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Configuration.EnvironmentalOverrides.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.SqlCe.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Data.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.Logging.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.WCF.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.ExceptionHandling.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Logging.Database.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Logging.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.PolicyInjection.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.AzMan.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.Cache.CachingStore.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Security.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.AspNet.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WCF.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WPF.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.Integration.WinForms.dll
│ ├── Microsoft.Practices.EnterpriseLibrary.Validation.dll
│ ├── Microsoft.Practices.ServiceLocation.dll
│ ├── Microsoft.Practices.Unity.Configuration.dll
│ ├── Microsoft.Practices.Unity.Interception.Configuration.dll
│ ├── Microsoft.Practices.Unity.Interception.dll
│ ├── Microsoft.Practices.Unity.dll
│ ├── Microsoft.Web.Infrastructure.dll
│ ├── Microsoft.Web.Optimization.dll
│ ├── StringTemplate.dll
│ ├── System.Web.Helpers.dll
│ ├── System.Web.Mvc.dll
│ ├── System.Web.Providers.dll
│ ├── System.Web.Razor.dll
│ ├── System.Web.WebPages.Deployment.dll
│ ├── System.Web.WebPages.Razor.dll
│ ├── System.Web.WebPages.dll
│ ├── antlr.runtime.dll
│ ├── log4net.dll
│ └── repositories.config
├── onehelper.Service
│ ├── ContextService.cst
│ ├── IEntityService.cst
│ ├── Impl
│ │ └── EntityServiceImpl.cst
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ └── ServiceProj.cst
├── onehelper.WebClient
│ ├── Content
│ │ ├── Site.css
│ │ ├── layout.css
│ │ ├── patches
│ │ │ └── patch_layout.css
│ │ ├── screen
│ │ │ ├── basemod.css
│ │ │ ├── basemod_layout.css
│ │ │ └── content.css
│ │ └── themes
│ │ └── base
│ │ ├── images
│ │ │ ├── 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.accordion.css
│ │ ├── jquery.ui.all.css
│ │ ├── jquery.ui.autocomplete.css
│ │ ├── jquery.ui.base.css
│ │ ├── jquery.ui.button.css
│ │ ├── jquery.ui.core.css
│ │ ├── jquery.ui.datepicker.css
│ │ ├── jquery.ui.dialog.css
│ │ ├── jquery.ui.progressbar.css
│ │ ├── jquery.ui.resizable.css
│ │ ├── jquery.ui.selectable.css
│ │ ├── jquery.ui.slider.css
│ │ ├── jquery.ui.tabs.css
│ │ └── jquery.ui.theme.css
│ ├── Global.cs.cst
│ ├── Global.cst
│ ├── Images
│ │ ├── NuGetGallery.png
│ │ ├── accent.png
│ │ ├── aspNetHome.png
│ │ ├── bg_blue.png
│ │ ├── bg_header.png
│ │ ├── bullet.png
│ │ ├── facebook.png
│ │ ├── findHosting.png
│ │ ├── heroAccent.png
│ │ ├── onehelper.png
│ │ ├── orderedList.png
│ │ ├── orderedListFive.png
│ │ ├── orderedListFour.png
│ │ ├── orderedListOne.png
│ │ ├── orderedListSix.png
│ │ ├── orderedListThree.png
│ │ ├── orderedListTwo.png
│ │ ├── twitter.png
│ │ └── windowsLive.png
│ ├── Properties
│ │ └── AssemblyInfo.cst
│ ├── Scripts
│ │ ├── AjaxLogin.js
│ │ ├── jquery-1.6.2-vsdoc.js
│ │ ├── jquery-1.6.2.js
│ │ ├── jquery-1.6.2.min.js
│ │ ├── jquery-ui-1.8.11.js
│ │ ├── jquery-ui-1.8.11.min.js
│ │ ├── jquery.unobtrusive-ajax.js
│ │ ├── jquery.unobtrusive-ajax.min.js
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── jquery.validate.js
│ │ ├── jquery.validate.min.js
│ │ ├── jquery.validate.unobtrusive.js
│ │ ├── jquery.validate.unobtrusive.min.js
│ │ ├── knockout-1.3.0beta.debug.js
│ │ ├── knockout-1.3.0beta.js
│ │ ├── modernizr-2.0.6-development-only.js
│ │ └── yaml
│ │ ├── ftod.js
│ │ ├── lib
│ │ │ ├── jquery-1.6.1.js
│ │ │ └── jquery-1.6.1.min.js
│ │ ├── minmax.js
│ │ └── yaml
│ │ ├── add-ons
│ │ │ ├── accessible-tabs
│ │ │ │ ├── jquery.tabs.js
│ │ │ │ ├── jquery.tabs.min.js
│ │ │ │ └── tabs.css
│ │ │ ├── microformats
│ │ │ │ ├── images
│ │ │ │ │ ├── external_link.png
│ │ │ │ │ ├── hcalendar.png
│ │ │ │ │ ├── hcard.png
│ │ │ │ │ ├── icon-geo.png
│ │ │ │ │ ├── icon-hatom.png
│ │ │ │ │ ├── icon-haudio.png
│ │ │ │ │ ├── icon-hcalendar-add.png
│ │ │ │ │ ├── icon-hcalendar-download.png
│ │ │ │ │ ├── icon-hcalendar.png
│ │ │ │ │ ├── icon-hcard-add.png
│ │ │ │ │ ├── icon-hcard-download.png
│ │ │ │ │ ├── icon-hcard.png
│ │ │ │ │ ├── icon-hresume.png
│ │ │ │ │ ├── icon-rel-tag.png
│ │ │ │ │ ├── icon-xfn.png
│ │ │ │ │ └── xfn
│ │ │ │ │ ├── xfn-child.png
│ │ │ │ │ ├── xfn-colleague-met.png
│ │ │ │ │ ├── xfn-colleague.png
│ │ │ │ │ ├── xfn-friend-met.png
│ │ │ │ │ ├── xfn-friend.png
│ │ │ │ │ ├── xfn-mail.png
│ │ │ │ │ ├── xfn-me.png
│ │ │ │ │ ├── xfn-parent.png
│ │ │ │ │ ├── xfn-small.png
│ │ │ │ │ ├── xfn-spouse.png
│ │ │ │ │ ├── xfn-sweetheart-met.png
│ │ │ │ │ └── xfn-sweetheart.png
│ │ │ │ └── microformats.css
│ │ │ ├── rtl-support
│ │ │ │ ├── core
│ │ │ │ │ ├── base-rtl.css
│ │ │ │ │ ├── iehacks-rtl.css
│ │ │ │ │ ├── slim_base-rtl.css
│ │ │ │ │ └── slim_iehacks-rtl.css
│ │ │ │ └── navigation
│ │ │ │ ├── nav_shinybuttons-rtl.css
│ │ │ │ ├── nav_slidingdoor-rtl.css
│ │ │ │ └── nav_vlist-rtl.css
│ │ │ └── syncheight
│ │ │ └── jquery.syncheight.js
│ │ ├── central_draft.css
│ │ ├── core
│ │ │ ├── base.css
│ │ │ ├── iehacks.css
│ │ │ ├── js
│ │ │ │ └── yaml-focusfix.js
│ │ │ ├── slim_base.css
│ │ │ └── slim_iehacks.css
│ │ ├── markup_draft.html
│ │ ├── navigation
│ │ │ ├── images
│ │ │ │ ├── shiny_buttons
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── background.png
│ │ │ │ │ └── background_active.png
│ │ │ │ ├── sliding_door
│ │ │ │ │ └── round
│ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ ├── bg.gif
│ │ │ │ │ ├── left.png
│ │ │ │ │ ├── left_on.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── right_on.png
│ │ │ │ └── vlist
│ │ │ │ └── square
│ │ │ │ ├── node.gif
│ │ │ │ ├── node_minus.gif
│ │ │ │ ├── node_plus.gif
│ │ │ │ ├── subnode.gif
│ │ │ │ ├── subnode_minus.gif
│ │ │ │ └── subnode_plus.gif
│ │ │ ├── nav_shinybuttons.css
│ │ │ ├── nav_slidingdoor.css
│ │ │ └── nav_vlist.css
│ │ ├── patches
│ │ │ ├── patch_layout_draft.css
│ │ │ └── patch_nav_vlist.css
│ │ │ ├── print_003_draft.css
│ │ │ ├── print_020_draft.css
│ │ │ ├── print_023_draft.css
│ │ │ ├── print_100_draft.css
│ │ │ ├── print_103_draft.css
│ │ │ ├── print_120_draft.css
│ │ │ ├── print_123_draft.css
│ │ │ └── print_draft.css
│ │ └── screen
│ │ ├── basemod_draft.css
│ │ ├── content_default.css
│ │ ├── forms.css
│ │ └── images
│ │ ├── button_gray.png
│ │ ├── button_red.png
│ │ └── button_yellow.png
│ ├── Views
│ │ ├── Account
│ │ │ ├── ChangePassword.cshtml
│ │ │ ├── ChangePasswordSuccess.cshtml
│ │ │ ├── LogOn.cshtml
│ │ │ └── Register.cshtml
│ │ ├── Home
│ │ │ ├── About.cshtml
│ │ │ ├── Contact.cshtml
│ │ │ └── Index.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ ├── _Layout.cshtml
│ │ │ └── _LogOnPartial.cshtml
│ │ ├── Web.config
│ │ └── _ViewStart.cshtml
│ ├── WebProj.cst
│ ├── web.Debug.config.cst
│ ├── web.Release.config.cst
│ ├── web.config.cst
│ └── yaml.4.0.1
│ ├── License.txt
│ ├── assets
│ │ ├── css
│ │ │ ├── layout.css
│ │ │ └── screen.css
│ │ ├── images
│ │ │ ├── Thumbs.db
│ │ │ ├── demo-custom-grid.png
│ │ │ ├── demo-flex-column.png
│ │ │ ├── demo-flex-grid.png
│ │ │ ├── demo-rtl.png
│ │ │ ├── yaml-solo-transparent-small.png
│ │ │ └── yaml-solo-transparent.png
│ │ └── js
│ │ ├── domscript.js
│ │ ├── jquery.gridbuilder.js
│ │ └── snippet
│ │ ├── ZeroClipboard.swf
│ │ ├── jquery.snippet.css
│ │ ├── jquery.snippet.js
│ │ ├── jquery.snippet.min.css
│ │ ├── jquery.snippet.min.js
│ │ └── snippet.css
│ ├── index.html
│ ├── lib
│ │ └── jquery-1.7.1.min.js
│ └── yaml
│ ├── add-ons
│ │ ├── accessible-tabs
│ │ │ ├── jquery.tabs.js
│ │ │ └── tabs.css
│ │ ├── microformats
│ │ │ ├── icons
│ │ │ │ ├── external_link.png
│ │ │ │ ├── hcalendar.png
│ │ │ │ ├── hcard.png
│ │ │ │ ├── icon-geo.png
│ │ │ │ ├── icon-hatom.png
│ │ │ │ ├── icon-haudio.png
│ │ │ │ ├── icon-hcalendar-add.png
│ │ │ │ ├── icon-hcalendar-download.png
│ │ │ │ ├── icon-hcalendar.png
│ │ │ │ ├── icon-hcard-add.png
│ │ │ │ ├── icon-hcard-download.png
│ │ │ │ ├── icon-hcard.png
│ │ │ │ ├── icon-hresume.png
│ │ │ │ ├── icon-rel-tag.png
│ │ │ │ ├── icon-xfn.png
│ │ │ │ └── xfn
│ │ │ │ ├── xfn-child.png
│ │ │ │ ├── xfn-colleague-met.png
│ │ │ │ ├── xfn-colleague.png
│ │ │ │ ├── xfn-friend-met.png
│ │ │ │ ├── xfn-friend.png
│ │ │ │ ├── xfn-me.png
│ │ │ │ ├── xfn-parent.png
│ │ │ │ ├── xfn-small.png
│ │ │ │ ├── xfn-spouse.png
│ │ │ │ ├── xfn-sweetheart-met.png
│ │ │ │ └── xfn-sweetheart.png
│ │ │ └── microformats.css
│ │ ├── rtl-support
│ │ │ ├── core
│ │ │ │ ├── base-rtl.css
│ │ │ │ └── base-rtl.min.css
│ │ │ ├── navigation
│ │ │ │ ├── hlist-rtl.css
│ │ │ │ └── vlist-rtl.css
│ │ │ └── screen
│ │ │ └── typography-rtl.css
│ │ └── syncheight
│ │ └── jquery.syncheight.js
│ ├── core
│ │ ├── base.css
│ │ ├── base.min.css
│ │ ├── iehacks.css
│ │ ├── iehacks.min.css
│ │ └── js
│ │ └── yaml-focusfix.js
│ ├── forms
│ │ └── gray-theme.css
│ ├── navigation
│ │ ├── hlist.css
│ │ └── vlist.css
│ │ └── print.css
│ └── screen
│ ├── grid-960-12.css
│ ├── grid-960-16.css
│ ├── screen-FULLPAGE-layout.css
│ ├── screen-PAGE-layout.css
│ └── typography.css
└── readme.txt
92 directories, 356 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论