├── .gitattributes ├── .gitignore ├── CMAppCreator ├── About.aspx ├── About.aspx.cs ├── About.aspx.designer.cs ├── About.txt ├── App_Start │ └── RouteConfig.cs ├── CM App Creator.csproj ├── CM App Creator.csproj.user ├── CM App Creator.sln ├── CMApplication.cs ├── Content │ └── Site.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Eventlog.aspx ├── Eventlog.aspx.cs ├── Eventlog.aspx.designer.cs ├── Eventlog.log ├── Global.asax ├── Global.asax.cs ├── IconExtractor.cs ├── NativeMethods.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ ├── Settings.Designer.cs │ └── Settings.settings ├── Scripts │ └── WebForms │ │ ├── DetailsView.js │ │ ├── Focus.js │ │ ├── GridView.js │ │ ├── MSAjax │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftAjaxApplicationServices.js │ │ ├── MicrosoftAjaxComponentModel.js │ │ ├── MicrosoftAjaxCore.js │ │ ├── MicrosoftAjaxGlobalization.js │ │ ├── MicrosoftAjaxHistory.js │ │ ├── MicrosoftAjaxNetwork.js │ │ ├── MicrosoftAjaxSerialization.js │ │ ├── MicrosoftAjaxTimer.js │ │ ├── MicrosoftAjaxWebForms.js │ │ └── MicrosoftAjaxWebServices.js │ │ ├── Menu.js │ │ ├── MenuStandards.js │ │ ├── SmartNav.js │ │ ├── TreeView.js │ │ ├── WebForms.js │ │ ├── WebParts.js │ │ └── WebUIValidation.js ├── Site.Master ├── Site.Master.cs ├── Site.Master.designer.cs ├── Site.Mobile.Master ├── Site.Mobile.Master.cs ├── Site.Mobile.Master.designer.cs ├── SmsProvider.cs ├── ViewSwitcher.ascx ├── ViewSwitcher.ascx.cs ├── ViewSwitcher.ascx.designer.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico └── packages.config ├── CMAppCreatorDemo.gif ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /CMAppCreator/About.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/About.aspx -------------------------------------------------------------------------------- /CMAppCreator/About.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/About.aspx.cs -------------------------------------------------------------------------------- /CMAppCreator/About.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/About.aspx.designer.cs -------------------------------------------------------------------------------- /CMAppCreator/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/About.txt -------------------------------------------------------------------------------- /CMAppCreator/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /CMAppCreator/CM App Creator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/CM App Creator.csproj -------------------------------------------------------------------------------- /CMAppCreator/CM App Creator.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/CM App Creator.csproj.user -------------------------------------------------------------------------------- /CMAppCreator/CM App Creator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/CM App Creator.sln -------------------------------------------------------------------------------- /CMAppCreator/CMApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/CMApplication.cs -------------------------------------------------------------------------------- /CMAppCreator/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Content/Site.css -------------------------------------------------------------------------------- /CMAppCreator/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Default.aspx -------------------------------------------------------------------------------- /CMAppCreator/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Default.aspx.cs -------------------------------------------------------------------------------- /CMAppCreator/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Default.aspx.designer.cs -------------------------------------------------------------------------------- /CMAppCreator/Eventlog.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Eventlog.aspx -------------------------------------------------------------------------------- /CMAppCreator/Eventlog.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Eventlog.aspx.cs -------------------------------------------------------------------------------- /CMAppCreator/Eventlog.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Eventlog.aspx.designer.cs -------------------------------------------------------------------------------- /CMAppCreator/Eventlog.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CMAppCreator/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Global.asax -------------------------------------------------------------------------------- /CMAppCreator/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Global.asax.cs -------------------------------------------------------------------------------- /CMAppCreator/IconExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/IconExtractor.cs -------------------------------------------------------------------------------- /CMAppCreator/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/NativeMethods.cs -------------------------------------------------------------------------------- /CMAppCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CMAppCreator/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /CMAppCreator/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /CMAppCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CMAppCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Properties/Settings.settings -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /CMAppCreator/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /CMAppCreator/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Site.Master -------------------------------------------------------------------------------- /CMAppCreator/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Site.Master.cs -------------------------------------------------------------------------------- /CMAppCreator/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Site.Master.designer.cs -------------------------------------------------------------------------------- /CMAppCreator/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Site.Mobile.Master -------------------------------------------------------------------------------- /CMAppCreator/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /CMAppCreator/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /CMAppCreator/SmsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/SmsProvider.cs -------------------------------------------------------------------------------- /CMAppCreator/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/ViewSwitcher.ascx -------------------------------------------------------------------------------- /CMAppCreator/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /CMAppCreator/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /CMAppCreator/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Web.Debug.config -------------------------------------------------------------------------------- /CMAppCreator/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Web.Release.config -------------------------------------------------------------------------------- /CMAppCreator/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/Web.config -------------------------------------------------------------------------------- /CMAppCreator/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/favicon.ico -------------------------------------------------------------------------------- /CMAppCreator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreator/packages.config -------------------------------------------------------------------------------- /CMAppCreatorDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/CMAppCreatorDemo.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBennerstedt/CMAppCreator/HEAD/README.md --------------------------------------------------------------------------------