实例介绍
【实例截图】
【核心代码】
.
├── C#门户网站前后台_DT.Portal.rar
└── DT.Portal
├── DT.Portal.Core
│ ├── ANK.NMDSY.Core.csproj.vspscc
│ ├── AuthorizationCheck.cs
│ ├── BaseEntity.cs
│ ├── Caching
│ │ ├── CacheExtensions.cs
│ │ ├── CacheFactory.cs
│ │ ├── HttpRuntimeCacheManager.cs
│ │ ├── ICacheManager.cs
│ │ ├── MemoryCacheManager.cs
│ │ └── NullCache.cs
│ ├── CommonHelper.cs
│ ├── ComponentModel
│ │ ├── GenericListTypeConverter.cs
│ │ └── WriteLockDisposable.cs
│ ├── ConfigSetting.cs
│ ├── Configuration
│ │ └── ISettings.cs
│ ├── DT.Portal.Core.csproj
│ ├── Domain
│ │ ├── Category
│ │ │ ├── Enum_ContentType.cs
│ │ │ └── NMDL_Category.cs
│ │ ├── Common
│ │ │ ├── CommonSettings.cs
│ │ │ └── FulltextSearchMode.cs
│ │ ├── Configuration
│ │ │ └── Setting.cs
│ │ ├── Contents
│ │ │ ├── ContentSortingEnum.cs
│ │ │ ├── Enum_ConentType.cs
│ │ │ ├── Portal_Contents.cs
│ │ │ └── Portal_Files.cs
│ │ ├── Logging
│ │ │ ├── ActivityLog.cs
│ │ │ ├── ActivityLogType.cs
│ │ │ ├── Log.cs
│ │ │ └── LogLevel.cs
│ │ ├── Navigations
│ │ │ ├── Enum_NGType.cs
│ │ │ └── Portal_Navigations.cs
│ │ ├── Organization
│ │ │ ├── CategoryRole.cs
│ │ │ ├── Employee.cs
│ │ │ ├── Org.cs
│ │ │ ├── RightEntity.cs
│ │ │ ├── RightRole.cs
│ │ │ ├── Role.cs
│ │ │ ├── User.cs
│ │ │ └── UserRole.cs
│ │ ├── SN
│ │ │ ├── Companies.cs
│ │ │ ├── FiscalYears.cs
│ │ │ ├── SequenceTypes.cs
│ │ │ ├── SerialNumbersShelf.cs
│ │ │ └── SerialSchemas.cs
│ │ ├── Site
│ │ │ ├── Modules
│ │ │ │ ├── Modular.cs
│ │ │ │ ├── ModularDefault.cs
│ │ │ │ └── ModularIndividual.cs
│ │ │ ├── Navigation
│ │ │ │ ├── SiteNavigation.cs
│ │ │ │ ├── SiteNavigationDefault.cs
│ │ │ │ └── SiteNavigationIndividual.cs
│ │ │ └── Template.cs
│ │ ├── Stores
│ │ │ ├── SiteStore.cs
│ │ │ ├── SiteStoreExtensions.cs
│ │ │ └── SiteStoreMapping.cs
│ │ └── Tasks
│ │ └── ScheduleTask.cs
│ ├── Extensions
│ │ └── EnumExtensions.cs
│ ├── ILogger.cs
│ ├── IPagedList.cs
│ ├── IWebHelper.cs
│ ├── Infrastructure
│ │ ├── IStartupTask.cs
│ │ └── Singleton.cs
│ ├── PagedList.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SQLOrderField.cs
│ ├── XmlSafeResolver.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ANK.NMDSY.Core.dll
│ │ │ ├── ANK.NMDSY.Core.pdb
│ │ │ ├── DT.Portal.Core.dll
│ │ │ └── DT.Portal.Core.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── ANK.NMDSY.Core.csproj.FileListAbsolute.txt
│ ├── ANK.NMDSY.Core.dll
│ ├── ANK.NMDSY.Core.pdb
│ ├── DT.Portal.Core.csproj.FileListAbsolute.txt
│ ├── DT.Portal.Core.csprojResolveAssemblyReference.cache
│ ├── DT.Portal.Core.dll
│ ├── DT.Portal.Core.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── DT.Portal.Data
│ ├── ANK.NMDSY.Data.csproj.vspscc
│ ├── Category
│ │ └── NMDL_CategoryProvider.cs
│ ├── Configuration
│ │ └── SettingProvider.cs
│ ├── Contents
│ │ ├── Portal_ContentsProvider.cs
│ │ └── Portal_FilesProvider.cs
│ ├── DT.Portal.Data.csproj
│ ├── DT.Portal.Data.csproj.user
│ ├── DapperExtensions.cs
│ ├── IRepository.cs
│ ├── Logging
│ │ ├── ActivityLogProvider.cs
│ │ ├── ActivityLogTypeProvider.cs
│ │ └── LogProvider.cs
│ ├── ManagerBase.cs
│ ├── Mapper
│ ├── Navigations
│ │ ├── ModuleCompare.cs
│ │ ├── Portal_NavigationsProvider.cs
│ │ └── portal_Module.cs
│ ├── Organization
│ │ ├── CategoryRoleProvider.cs
│ │ ├── OrgProvider.cs
│ │ ├── RoleProvider.cs
│ │ └── UserProvider.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Repository.cs
│ ├── SN
│ │ ├── GenerateSNProvider.cs
│ │ └── SequenceTypesProvider.cs
│ ├── Session.cs
│ ├── Tasks
│ │ └── ScheduleTaskProvider.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ANK.NMDSY.Core.dll
│ │ │ ├── ANK.NMDSY.Core.pdb
│ │ │ ├── ANK.NMDSY.Data.dll
│ │ │ ├── ANK.NMDSY.Data.pdb
│ │ │ ├── DT.Portal.Core.dll
│ │ │ ├── DT.Portal.Core.pdb
│ │ │ ├── DT.Portal.Data.dll
│ │ │ ├── DT.Portal.Data.pdb
│ │ │ ├── Dapper.dll
│ │ │ ├── Dapper.pdb
│ │ │ ├── DapperExtensions.dll
│ │ │ └── DapperExtensions.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── ANK.NMDSY.Data.csproj.FileListAbsolute.txt
│ ├── ANK.NMDSY.Data.csprojResolveAssemblyReference.cache
│ ├── ANK.NMDSY.Data.dll
│ ├── ANK.NMDSY.Data.pdb
│ ├── DT.Portal.Data.csproj.FileListAbsolute.txt
│ ├── DT.Portal.Data.csprojResolveAssemblyReference.cache
│ ├── DT.Portal.Data.dll
│ ├── DT.Portal.Data.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── DT.Portal.Service
│ ├── ANK.NMDSY.Service.csproj.vspscc
│ ├── Category
│ │ └── CategoryService.cs
│ ├── Configuration
│ │ ├── ISettingService.cs
│ │ ├── SettingService.cs
│ │ └── SettingsSource.cs
│ ├── Contents
│ │ ├── ContentsService.cs
│ │ └── FilesService.cs
│ ├── DT.Portal.Service.csproj
│ ├── Logging
│ │ ├── ClearLogTask.cs
│ │ ├── CustomerActivityService.cs
│ │ ├── DefaultLogger.cs
│ │ ├── ICustomerActivityService.cs
│ │ ├── LoggingExtensions.cs
│ │ └── NullLogger.cs
│ ├── Navigations
│ │ └── NavigationsService.cs
│ ├── Organization
│ │ ├── CategoryRoleService.cs
│ │ ├── IOrgService.cs
│ │ ├── IRoleService.cs
│ │ ├── IUserService.cs
│ │ ├── OrgService.cs
│ │ ├── RoleService.cs
│ │ └── UserService.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SN
│ │ ├── GenerateSN.cs
│ │ ├── IGenerateSN.cs
│ │ ├── ISequenceTypesService.cs
│ │ └── SequenceTypesService.cs
│ ├── Tasks
│ │ ├── IScheduleTaskService.cs
│ │ ├── ITask.cs
│ │ ├── ScheduleTaskService.cs
│ │ ├── Task.cs
│ │ ├── TaskManager.cs
│ │ └── TaskThread.cs
│ ├── WebHelper.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ANK.NMDSY.Core.dll
│ │ │ ├── ANK.NMDSY.Core.pdb
│ │ │ ├── ANK.NMDSY.Data.dll
│ │ │ ├── ANK.NMDSY.Data.pdb
│ │ │ ├── ANK.NMDSY.Service.dll
│ │ │ ├── ANK.NMDSY.Service.pdb
│ │ │ ├── DT.Portal.Core.dll
│ │ │ ├── DT.Portal.Core.pdb
│ │ │ ├── DT.Portal.Data.dll
│ │ │ ├── DT.Portal.Data.pdb
│ │ │ ├── DT.Portal.Service.dll
│ │ │ ├── DT.Portal.Service.pdb
│ │ │ ├── Dapper.dll
│ │ │ ├── Dapper.pdb
│ │ │ ├── DapperExtensions.dll
│ │ │ └── DapperExtensions.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── ANK.NMDSY.Service.csproj.FileListAbsolute.txt
│ ├── ANK.NMDSY.Service.csprojResolveAssemblyReference.cache
│ ├── ANK.NMDSY.Service.dll
│ ├── ANK.NMDSY.Service.pdb
│ ├── DT.Portal.Service.csproj.FileListAbsolute.txt
│ ├── DT.Portal.Service.csprojResolveAssemblyReference.cache
│ ├── DT.Portal.Service.dll
│ ├── DT.Portal.Service.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── DT.Portal.Web.Framework
│ ├── ANK.NMDSY.Web.Framework.csproj.vspscc
│ ├── Controls
│ │ ├── AdminBaseMaster.cs
│ │ ├── AdminBasePage.cs
│ │ ├── AdminMaster.cs
│ │ ├── AdminPage.cs
│ │ ├── AdminTabItem.cs
│ │ ├── AdminTabStrip.cs
│ │ ├── BasePage.cs
│ │ ├── ExtensionAttribute.cs
│ │ ├── PageContorl.cs
│ │ ├── PageContorl2.cs
│ │ └── RewriteFormHtmlTextWriter.cs
│ ├── DT.Portal.Web.Framework.csproj
│ ├── DT.Portal.Web.Framework.csproj.user
│ ├── Extensions
│ │ ├── ExtensionManager.cs
│ │ ├── ExtensionParameter.cs
│ │ ├── ExtensionSettings.cs
│ │ └── ManagedExtension.cs
│ ├── HtmlHelper.cs
│ ├── HttpHandlers
│ ├── InjectionUntainter.cs
│ ├── JsonResponse.cs
│ ├── MessageBox.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RazorHelpers.cs
│ ├── RemoteFile.cs
│ ├── Security
│ │ ├── CategorySecurity.cs
│ │ ├── CustomIdentity.cs
│ │ ├── CustomPrincipal.cs
│ │ ├── Right.cs
│ │ ├── Right^.cs
│ │ ├── Rights.cs
│ │ ├── Security.cs
│ │ ├── SecuritySiteMapProvider.cs
│ │ └── UserSession.cs
│ ├── StringGlobalization.cs
│ ├── Utils.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DT.Portal.Core.dll
│ │ │ ├── DT.Portal.Core.pdb
│ │ │ ├── DT.Portal.Data.dll
│ │ │ ├── DT.Portal.Data.pdb
│ │ │ ├── DT.Portal.Service.dll
│ │ │ ├── DT.Portal.Service.pdb
│ │ │ ├── DT.Portal.Web.Framework.dll
│ │ │ ├── DT.Portal.Web.Framework.pdb
│ │ │ ├── Dapper.dll
│ │ │ ├── Dapper.pdb
│ │ │ ├── DapperExtensions.dll
│ │ │ ├── DapperExtensions.pdb
│ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ ├── System.Web.Helpers.dll
│ │ │ ├── System.Web.Helpers.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.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
│ │ └── Release
│ ├── obj
│ │ └── Debug
│ │ ├── ANK.NMDSY.Web.Framework.csproj.FileListAbsolute.txt
│ │ ├── ANK.NMDSY.Web.Framework.csprojResolveAssemblyReference.cache
│ │ ├── ANK.NMDSY.Web.Framework.dll
│ │ ├── ANK.NMDSY.Web.Framework.pdb
│ │ ├── DT.Portal.Web.Framework.csproj.FileListAbsolute.txt
│ │ ├── DT.Portal.Web.Framework.csprojResolveAssemblyReference.cache
│ │ ├── DT.Portal.Web.Framework.dll
│ │ ├── DT.Portal.Web.Framework.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ └── packages.config
├── DT.Portal.WebInternalPortal
│ ├── Admin
│ │ ├── Account.Master
│ │ ├── Account.Master.cs
│ │ ├── Account.Master.designer.cs
│ │ ├── Admin.Master
│ │ ├── Admin.Master.cs
│ │ ├── Admin.Master.designer.cs
│ │ ├── Category
│ │ │ ├── Category.aspx
│ │ │ ├── Category.aspx.cs
│ │ │ ├── Category.aspx.designer.cs
│ │ │ ├── CategoryEdit.aspx
│ │ │ ├── CategoryEdit.aspx.cs
│ │ │ ├── CategoryEdit.aspx.designer.cs
│ │ │ ├── CategoryHandler.ashx
│ │ │ └── CategoryHandler.ashx.cs
│ │ ├── Configuration
│ │ │ ├── AllSettings.ascx
│ │ │ ├── AllSettings.ascx.cs
│ │ │ ├── AllSettings.ascx.designer.cs
│ │ │ ├── GeneralSettings.ascx
│ │ │ ├── GeneralSettings.ascx.cs
│ │ │ ├── GeneralSettings.ascx.designer.cs
│ │ │ ├── Settings.aspx
│ │ │ ├── Settings.aspx.cs
│ │ │ └── Settings.aspx.designer.cs
│ │ ├── Contents
│ │ │ ├── BackContentList.ascx
│ │ │ ├── BackContentList.ascx.cs
│ │ │ ├── BackContentList.ascx.designer.cs
│ │ │ ├── ContentMain.aspx
│ │ │ ├── ContentMain.aspx.cs
│ │ │ ├── ContentMain.aspx.designer.cs
│ │ │ ├── ContentView.aspx
│ │ │ ├── ContentView.aspx.cs
│ │ │ ├── ContentView.aspx.designer.cs
│ │ │ ├── ContentsMenu.ascx
│ │ │ ├── ContentsMenu.ascx.cs
│ │ │ ├── ContentsMenu.ascx.designer.cs
│ │ │ ├── DBContentList.ascx
│ │ │ ├── DBContentList.ascx.cs
│ │ │ ├── DBContentList.ascx.designer.cs
│ │ │ ├── EditHTML.ascx
│ │ │ ├── EditHTML.ascx.cs
│ │ │ ├── EditHTML.ascx.designer.cs
│ │ │ ├── FLContentList.ascx
│ │ │ ├── FLContentList.ascx.cs
│ │ │ ├── FLContentList.ascx.designer.cs
│ │ │ ├── QbContentList.ascx
│ │ │ ├── QbContentList.ascx.cs
│ │ │ ├── QbContentList.ascx.designer.cs
│ │ │ ├── Uploader.ashx
│ │ │ └── Uploader.ashx.cs
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Default.aspx.designer.cs
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Login.aspx.designer.cs
│ │ ├── Navigations
│ │ │ ├── Navigations.Tree.js
│ │ │ ├── Navigations.aspx
│ │ │ ├── Navigations.aspx.cs
│ │ │ ├── Navigations.aspx.designer.cs
│ │ │ ├── NavigationsHandler.ashx
│ │ │ ├── NavigationsHandler.ashx.cs
│ │ │ └── input.Select.js
│ │ ├── Organization
│ │ │ ├── Categories.aspx
│ │ │ ├── Categories.aspx.cs
│ │ │ ├── Categories.aspx.designer.cs
│ │ │ ├── Menu.ascx
│ │ │ ├── Menu.ascx.cs
│ │ │ ├── Menu.ascx.designer.cs
│ │ │ ├── Orgs.aspx
│ │ │ ├── Orgs.aspx.cs
│ │ │ ├── Orgs.aspx.designer.cs
│ │ │ ├── Profile.aspx
│ │ │ ├── Profile.aspx.cs
│ │ │ ├── Profile.aspx.designer.cs
│ │ │ ├── Rights.aspx
│ │ │ ├── Rights.aspx.cs
│ │ │ ├── Rights.aspx.designer.cs
│ │ │ ├── Roles.aspx
│ │ │ ├── Roles.aspx.cs
│ │ │ ├── Roles.aspx.designer.cs
│ │ │ ├── SetUserRole.aspx
│ │ │ ├── SetUserRole.aspx.cs
│ │ │ ├── SetUserRole.aspx.designer.cs
│ │ │ ├── Users.aspx
│ │ │ ├── Users.aspx.cs
│ │ │ ├── Users.aspx.designer.cs
│ │ │ ├── orgs.js
│ │ │ ├── orgs.orgTree.js
│ │ │ ├── users.js
│ │ │ └── users.orgTree.js
│ │ ├── TabForm.aspx
│ │ ├── TabForm.aspx.cs
│ │ ├── TabForm.aspx.designer.cs
│ │ ├── Web.sitemap
│ │ ├── js
│ │ │ ├── Calendar
│ │ │ │ ├── NewFolder1
│ │ │ │ ├── WdatePicker.js
│ │ │ │ ├── calendar.js
│ │ │ │ ├── lang
│ │ │ │ └── skin
│ │ │ ├── admin.js
│ │ │ ├── date.js
│ │ │ ├── fileuploader
│ │ │ │ ├── fileuploader.css
│ │ │ │ └── images
│ │ │ ├── fileuploader.js
│ │ │ ├── jquery.colorbox-min.js
│ │ │ ├── jquery.colorbox.js
│ │ │ ├── jquery.maskedinput.js
│ │ │ ├── jquery.masonry.min.js
│ │ │ ├── jquery.tips.js
│ │ │ ├── jquery.tipsy.js
│ │ │ ├── login.js
│ │ │ ├── public.Images.js
│ │ │ ├── public.Uploader.js
│ │ │ └── tinymce
│ │ │ ├── LICENSE.TXT
│ │ │ ├── changelog.txt
│ │ │ └── js
│ │ ├── menu.ascx
│ │ ├── menu.ascx.cs
│ │ ├── menu.ascx.designer.cs
│ │ └── style
│ │ ├── colorbox.css
│ │ ├── images
│ │ │ ├── Header-logo.png
│ │ │ ├── Header-logo2.png
│ │ │ ├── Icon16
│ │ │ ├── Icon32
│ │ │ ├── action-add.png
│ │ │ ├── action-delete-small-lt.png
│ │ │ ├── action-delete-small.png
│ │ │ ├── action-delete.png
│ │ │ ├── action-down.png
│ │ │ ├── action-dropdown.png
│ │ │ ├── action-edit-small-lt.png
│ │ │ ├── action-edit-small.png
│ │ │ ├── action-enable-small.png
│ │ │ ├── action-enable.png
│ │ │ ├── action-profile-small.png
│ │ │ ├── action-remove-small.png
│ │ │ ├── action-remove.png
│ │ │ ├── action-rights-small.png
│ │ │ ├── action-settings.png
│ │ │ ├── action-tools-small-lt.png
│ │ │ ├── action-tools-small.png
│ │ │ ├── action-up.png
│ │ │ ├── action-view-small.png
│ │ │ ├── bkg-blue.jpg
│ │ │ ├── bkg-blue.png
│ │ │ ├── bkg-dark-1.png
│ │ │ ├── bkg-dark.jpg
│ │ │ ├── bkg-dark2.jpg
│ │ │ ├── bkg-light-blue.png
│ │ │ ├── bkg-light.jpg
│ │ │ ├── bkg.png
│ │ │ ├── colorbox
│ │ │ ├── dl_bj.jpg
│ │ │ ├── gray-btn-bkg.png
│ │ │ ├── headerbg.png
│ │ │ ├── icon-comments.png
│ │ │ ├── icon-file.png
│ │ │ ├── icon-image.png
│ │ │ ├── icon-info.png
│ │ │ ├── icon-video.png
│ │ │ ├── imagegallery.png
│ │ │ ├── link-first.png
│ │ │ ├── link-last.png
│ │ │ ├── link-next.png
│ │ │ ├── link-prev.png
│ │ │ ├── no_avatar.png
│ │ │ ├── orange-btn-bkg.png
│ │ │ ├── recyclebin.png
│ │ │ ├── right-menu-bkg-blue.png
│ │ │ ├── right-menu-bkg.jpg
│ │ │ ├── slider-arrow.png
│ │ │ ├── status-denied.png
│ │ │ ├── status-draft.png
│ │ │ ├── status-error.png
│ │ │ ├── status-help.png
│ │ │ ├── status-info.png
│ │ │ ├── status-success.png
│ │ │ ├── status-warning.png
│ │ │ ├── tab-bkg-blue.png
│ │ │ ├── tab-bkg.png
│ │ │ ├── tipsy.gif
│ │ │ └── tree_icon.png
│ │ ├── login
│ │ │ └── images
│ │ ├── login.css
│ │ ├── pics
│ │ │ └── blogengine.ico
│ │ ├── site.css
│ │ ├── style-blue.css
│ │ ├── style.css
│ │ └── tipsy.css
│ ├── ContenTypes.aspx
│ ├── ContenTypes.aspx.cs
│ ├── ContenTypes.aspx.designer.cs
│ ├── Content
│ │ └── jstree
│ │ └── themes
│ │ ├── default
│ │ └── default-dark
│ ├── ContentHTMLImages
│ │ └── 2016
│ │ └── 4
│ │ ├── 10
│ │ ├── 25
│ │ ├── 26
│ │ ├── 28
│ │ └── 28.rar
│ ├── ContentImages
│ │ └── 2016
│ │ └── 4
│ │ ├── 10
│ │ ├── 26
│ │ └── 28
│ ├── ContentPage.aspx
│ ├── ContentPage.aspx.cs
│ ├── ContentPage.aspx.designer.cs
│ ├── Contentss.aspx
│ ├── Contentss.aspx.cs
│ ├── Contentss.aspx.designer.cs
│ ├── DT.Portal.WebInternalPortal.Publish.xml
│ ├── DT.Portal.WebInternalPortal.csproj
│ ├── DT.Portal.WebInternalPortal.csproj.user
│ ├── DT.Portal.WebInternalPortal.csproj.vspscc
│ ├── Global.asax
│ ├── Global.asax.cs
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── Index.aspx.designer.cs
│ ├── List.aspx
│ ├── List.aspx.cs
│ ├── List.aspx.designer.cs
│ ├── Model
│ │ └── TreeMode.cs
│ ├── MoreDynamic.aspx
│ ├── MoreDynamic.aspx.cs
│ ├── MoreDynamic.aspx.designer.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Scripts
│ │ ├── jQuery.1.8.2.min.js
│ │ ├── jquery-2.1.4-vsdoc.js
│ │ ├── jquery-2.1.4.js
│ │ ├── jquery-2.1.4.min.js
│ │ ├── jquery-2.1.4.min.map
│ │ ├── jquery.js
│ │ ├── jquery.lazyload.js
│ │ ├── jquery.tabs.js
│ │ ├── jquery.tabs.min.js
│ │ ├── jstree.js
│ │ ├── jstree.min.js
│ │ ├── script.js
│ │ └── tinymce
│ │ ├── langs
│ │ │ └── readme.md
│ │ ├── license.txt
│ │ ├── plugins
│ │ │ ├── advlist
│ │ │ ├── anchor
│ │ │ ├── autolink
│ │ │ ├── autoresize
│ │ │ ├── autosave
│ │ │ ├── bbcode
│ │ │ ├── charmap
│ │ │ ├── code
│ │ │ ├── colorpicker
│ │ │ ├── compat3x
│ │ │ ├── contextmenu
│ │ │ ├── directionality
│ │ │ ├── emoticons
│ │ │ ├── example
│ │ │ ├── example_dependency
│ │ │ ├── fullpage
│ │ │ ├── fullscreen
│ │ │ ├── hr
│ │ │ ├── image
│ │ │ ├── imagetools
│ │ │ ├── importcss
│ │ │ ├── insertdatetime
│ │ │ ├── layer
│ │ │ ├── legacyoutput
│ │ │ ├── link
│ │ │ ├── lists
│ │ │ ├── media
│ │ │ ├── nonbreaking
│ │ │ ├── noneditable
│ │ │ ├── pagebreak
│ │ │ ├── paste
│ │ │ ├── preview
│ │ │ ├── print
│ │ │ ├── save
│ │ │ ├── searchreplace
│ │ │ ├── spellchecker
│ │ │ ├── tabfocus
│ │ │ ├── table
│ │ │ ├── template
│ │ │ ├── textcolor
│ │ │ ├── textpattern
│ │ │ ├── visualblocks
│ │ │ ├── visualchars
│ │ │ └── wordcount
│ │ ├── skins
│ │ │ └── lightgray
│ │ ├── themes
│ │ │ └── modern
│ │ ├── tinymce.js
│ │ └── tinymce.min.js
│ ├── SearchResults.aspx
│ ├── SearchResults.aspx.cs
│ ├── SearchResults.aspx.designer.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── WebUserControls
│ │ ├── Copyright.ascx
│ │ ├── Copyright.ascx.cs
│ │ ├── Copyright.ascx.designer.cs
│ │ ├── Footer.ascx
│ │ ├── Footer.ascx.cs
│ │ ├── Footer.ascx.designer.cs
│ │ ├── _menu.ascx
│ │ ├── _menu.ascx.cs
│ │ └── _menu.ascx.designer.cs
│ ├── appsettings.config
│ ├── article.aspx
│ ├── article.aspx.cs
│ ├── article.aspx.designer.cs
│ ├── articleView.aspx
│ ├── articleView.aspx.cs
│ ├── articleView.aspx.designer.cs
│ ├── bin
│ │ ├── DT.Portal.Core.dll
│ │ ├── DT.Portal.Core.pdb
│ │ ├── DT.Portal.Data.dll
│ │ ├── DT.Portal.Data.pdb
│ │ ├── DT.Portal.Service.dll
│ │ ├── DT.Portal.Service.pdb
│ │ ├── DT.Portal.Web.Framework.dll
│ │ ├── DT.Portal.Web.Framework.pdb
│ │ ├── DT.Portal.WebInternalPortal.dll
│ │ ├── DT.Portal.WebInternalPortal.pdb
│ │ ├── Dapper.dll
│ │ ├── Dapper.pdb
│ │ ├── DapperExtensions.dll
│ │ ├── DapperExtensions.pdb
│ │ ├── System.Web.Helpers.dll
│ │ ├── System.Web.Helpers.xml
│ │ ├── System.Web.Mvc.dll
│ │ ├── System.Web.Mvc.xml
│ │ ├── System.Web.WebPages.Razor.dll
│ │ └── System.Web.WebPages.Razor.xml
│ ├── connectionstring.config
│ ├── images
│ │ ├── bg.png
│ │ ├── bg1.jpg
│ │ ├── bg2.jpg
│ │ ├── bg2.png
│ │ ├── bg3.jpg
│ │ ├── bg4.jpg
│ │ ├── chp_fg.jpg
│ │ ├── chp_frame.jpg
│ │ ├── dot.jpg
│ │ ├── img1.jpg
│ │ ├── img2.jpg
│ │ ├── img3.jpg
│ │ ├── img4.jpg
│ │ ├── index_02.jpg
│ │ ├── index_04.jpg
│ │ ├── index_07.jpg
│ │ ├── index_09.jpg
│ │ ├── index_11.jpg
│ │ ├── index_16.jpg
│ │ ├── index_19.jpg
│ │ ├── lianxi.jpg
│ │ ├── link.jpg
│ │ ├── list_03.jpg
│ │ ├── list_06.jpg
│ │ ├── list_09.jpg
│ │ ├── list_12.jpg
│ │ ├── list_17.jpg
│ │ ├── list_20.jpg
│ │ ├── list_22.jpg
│ │ ├── list_24.jpg
│ │ ├── logo.png
│ │ ├── logo2.png
│ │ ├── pagesbg1.jpg
│ │ ├── pagesbg2.jpg
│ │ ├── tabs_1.gif
│ │ ├── tabs_2.gif
│ │ └── tupian02.jpg
│ ├── js
│ │ ├── jquery-1.4.2.min.js
│ │ ├── jquery.cycle.all.min.js
│ │ ├── jquery.js
│ │ └── scroll.js
│ ├── obj
│ │ └── Debug
│ │ ├── ANK.NMDSY.WebInternalPortal.csproj.FileListAbsolute.txt
│ │ ├── ANK.NMDSY.WebInternalPortal.csprojResolveAssemblyReference.cache
│ │ ├── ANK.NMDSY.WebInternalPortal.dll
│ │ ├── ANK.NMDSY.WebInternalPortal.pdb
│ │ ├── DT.Portal.WebInternalPortal.csproj.FileListAbsolute.txt
│ │ ├── DT.Portal.WebInternalPortal.csprojResolveAssemblyReference.cache
│ │ ├── DT.Portal.WebInternalPortal.dll
│ │ ├── DT.Portal.WebInternalPortal.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Package
│ │ └── TempPE
│ ├── packages.config
│ ├── portal_Contents
│ │ ├── CategoryContentList.ascx
│ │ ├── CategoryContentList.ascx.cs
│ │ ├── CategoryContentList.ascx.designer.cs
│ │ ├── ContentList.ascx
│ │ ├── ContentList.ascx.cs
│ │ ├── ContentList.ascx.designer.cs
│ │ ├── Copy.ascx
│ │ ├── Copy.ascx.cs
│ │ ├── Copy.ascx.designer.cs
│ │ ├── DynamicIndustry.ascx
│ │ ├── DynamicIndustry.ascx.cs
│ │ ├── DynamicIndustry.ascx.designer.cs
│ │ ├── FootNay.ascx
│ │ ├── FootNay.ascx.cs
│ │ ├── FootNay.ascx.designer.cs
│ │ ├── FootNayLeft.ascx
│ │ ├── FootNayLeft.ascx.cs
│ │ ├── FootNayLeft.ascx.designer.cs
│ │ ├── FootNayRight.ascx
│ │ ├── FootNayRight.ascx.cs
│ │ ├── FootNayRight.ascx.designer.cs
│ │ ├── ImagesList.ascx
│ │ ├── ImagesList.ascx.cs
│ │ ├── ImagesList.ascx.designer.cs
│ │ ├── MoreDynamicList.ascx
│ │ ├── MoreDynamicList.ascx.cs
│ │ ├── MoreDynamicList.ascx.designer.cs
│ │ ├── NewsCenter.ascx
│ │ ├── NewsCenter.ascx.cs
│ │ ├── NewsCenter.ascx.designer.cs
│ │ ├── NewsCenterLeft.ascx
│ │ ├── NewsCenterLeft.ascx.cs
│ │ ├── NewsCenterLeft.ascx.designer.cs
│ │ ├── NewsCenterRight.ascx
│ │ ├── NewsCenterRight.ascx.cs
│ │ ├── NewsCenterRight.ascx.designer.cs
│ │ ├── NewsLeft.ascx
│ │ ├── NewsLeft.ascx.cs
│ │ ├── NewsLeft.ascx.designer.cs
│ │ ├── NewsRight.ascx
│ │ ├── NewsRight.ascx.cs
│ │ ├── NewsRight.ascx.designer.cs
│ │ ├── ShowCase.ascx
│ │ ├── ShowCase.ascx.cs
│ │ ├── ShowCase.ascx.designer.cs
│ │ ├── TxtNews.ascx
│ │ ├── TxtNews.ascx.cs
│ │ └── TxtNews.ascx.designer.cs
│ ├── style
│ │ ├── css.css
│ │ └── style.css
│ └── themes
│ ├── KickStart
│ │ ├── css
│ │ │ ├── Main.css
│ │ │ ├── MyKickStart.css
│ │ │ ├── chosen.css
│ │ │ ├── fonts
│ │ │ ├── img
│ │ │ ├── jquery.fancybox-1.3.4.css
│ │ │ ├── kickstart-buttons.css
│ │ │ ├── kickstart-forms.css
│ │ │ ├── kickstart-grid.css
│ │ │ ├── kickstart-icons.css
│ │ │ ├── kickstart-menus.css
│ │ │ ├── kickstart.css
│ │ │ ├── prettify.css
│ │ │ └── tiptip.css
│ │ ├── jmdcmsbase.css
│ │ ├── js
│ │ │ ├── kickstart.js
│ │ │ └── prettify.js
│ │ └── style.css
│ ├── Standard
│ │ ├── LeftMenus.ascx
│ │ ├── LeftMenus.ascx.cs
│ │ ├── LeftMenus.ascx.designer.cs
│ │ ├── MeunUserControl.ascx
│ │ ├── MeunUserControl.ascx.cs
│ │ ├── MeunUserControl.ascx.designer.cs
│ │ ├── Nav.ascx
│ │ ├── Nav.ascx.cs
│ │ ├── Nav.ascx.designer.cs
│ │ ├── SecondMasterPage.master
│ │ ├── SecondMasterPage.master.cs
│ │ ├── SecondMasterPage.master.designer.cs
│ │ ├── WebTop.Master
│ │ ├── WebTop.Master.cs
│ │ └── WebTop.Master.designer.cs
│ └── red
│ ├── Site.Master
│ ├── Site.Master.cs
│ └── Site.Master.designer.cs
├── DT.Portal.sln
├── DT.Portal.suo
├── DT.Portal.vssscc
├── Libraries
│ ├── Dapper
│ │ ├── Dapper.csproj
│ │ ├── Dapper.csproj.vspscc
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── SqlMapper.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Dapper.dll
│ │ │ └── Dapper.pdb
│ │ └── obj
│ │ └── Debug
│ │ ├── Dapper.csproj.FileListAbsolute.txt
│ │ ├── Dapper.csprojResolveAssemblyReference.cache
│ │ ├── Dapper.dll
│ │ ├── Dapper.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ └── DapperExtensions
│ ├── DapperExtensions.cs
│ ├── DapperExtensions.csproj
│ ├── DapperExtensions.csproj.vspscc
│ ├── DapperExtensionsConfiguration.cs
│ ├── DapperImplementor.cs
│ ├── Database.cs
│ ├── GetMultiplePredicate.cs
│ ├── GetMultipleResult.cs
│ ├── Mapper
│ │ ├── AutoClassMapper.cs
│ │ ├── ClassMapper.cs
│ │ ├── PluralizedAutoClassMapper.cs
│ │ └── PropertyMap.cs
│ ├── Predicates.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ReflectionHelper.cs
│ ├── Sql
│ │ ├── MySqlDialect.cs
│ │ ├── PostgreSqlDialect.cs
│ │ ├── SqlCeDialect.cs
│ │ ├── SqlDialectBase.cs
│ │ ├── SqlGenerator.cs
│ │ ├── SqlServerDialect.cs
│ │ └── SqliteDialect.cs
│ ├── bin
│ │ └── Debug
│ │ ├── Dapper.dll
│ │ ├── Dapper.pdb
│ │ ├── DapperExtensions.dll
│ │ └── DapperExtensions.pdb
│ └── obj
│ └── Debug
│ ├── DapperExtensions.csproj.FileListAbsolute.txt
│ ├── DapperExtensions.csprojResolveAssemblyReference.cache
│ ├── DapperExtensions.dll
│ ├── DapperExtensions.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
└── packages
├── 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
├── Microsoft.AspNet.Razor.2.0.20710.0
│ ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg
│ └── lib
│ └── net40
│ ├── System.Web.Razor.dll
│ └── System.Web.Razor.xml
├── Microsoft.AspNet.WebPages.2.0.20710.0
│ ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg
│ └── 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
├── Microsoft.Web.Infrastructure.1.0.0.0
│ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│ └── lib
│ └── net40
│ └── Microsoft.Web.Infrastructure.dll
├── TinyMCE.4.2.2
│ ├── TinyMCE.4.2.2.nupkg
│ └── content
│ └── scripts
│ └── tinymce
├── jQuery.2.1.4
│ ├── Content
│ │ └── Scripts
│ │ ├── jquery-2.1.4-vsdoc.js
│ │ ├── jquery-2.1.4.js
│ │ ├── jquery-2.1.4.min.js
│ │ └── jquery-2.1.4.min.map
│ ├── Tools
│ │ ├── common.ps1
│ │ ├── install.ps1
│ │ ├── jquery-2.1.4.intellisense.js
│ │ └── uninstall.ps1
│ └── jQuery.2.1.4.nupkg
├── jquery.jstree.3.1.1.12
│ ├── Content
│ │ ├── Content
│ │ │ └── themes
│ │ └── Scripts
│ │ ├── jstree.js
│ │ └── jstree.min.js
│ └── jquery.jstree.3.1.1.12.nupkg
└── repositories.config
231 directories, 733 files
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)