├── README.md ├── WCPAspNetCoreMvcCS ├── Controllers │ ├── DemoPrintCommandsController.cs │ ├── DemoPrintFileController.cs │ ├── DemoPrintFileDOCController.cs │ ├── DemoPrintFilePDFController.cs │ ├── DemoPrintFileWithEncryptionController.cs │ ├── DemoPrintFileWithPwdProtectionController.cs │ ├── DemoPrintFileXLSController.cs │ ├── HomeController.cs │ └── WebClientPrintAPIController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── webclienttools - FTP.pubxml │ │ ├── webclienttools - FTP.pubxml.user │ │ ├── webclienttools - Web Deploy.pubxml │ │ └── webclienttools - Web Deploy.pubxml.user │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── DemoPrintCommands │ │ └── Index.cshtml │ ├── DemoPrintFile │ │ └── Index.cshtml │ ├── DemoPrintFileDOC │ │ └── Index.cshtml │ ├── DemoPrintFilePDF │ │ └── Index.cshtml │ ├── DemoPrintFileWithEncryption │ │ └── Index.cshtml │ ├── DemoPrintFileWithPwdProtection │ │ └── Index.cshtml │ ├── DemoPrintFileXLS │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ ├── PrintersInfo.cshtml │ │ └── Samples.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── WCPAspNetCoreMvcCS.csproj ├── appsettings.Development.json ├── appsettings.json ├── files │ ├── GuidingPrinciplesBusinessHR_EN.pdf │ ├── LoremIpsum-PasswordProtected.doc │ ├── LoremIpsum-PasswordProtected.pdf │ ├── LoremIpsum.doc │ ├── LoremIpsum.pdf │ ├── LoremIpsum.txt │ ├── Project-Scheduling-Monitoring-Tool.xls │ ├── Sample-Employee-Handbook.doc │ ├── SamplePngImage.png │ ├── SampleSheet-PasswordProtected.xls │ ├── SampleSheet.xls │ ├── mixed-page-orientation.pdf │ ├── patent2pages.tif │ └── penguins300dpi.jpg └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── WCPMVCCS ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ └── RouteConfig.cs ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── Controllers │ ├── DemoPrintCommandsController.cs │ ├── DemoPrintFileController.cs │ ├── DemoPrintFileDOCController.cs │ ├── DemoPrintFilePDFController.cs │ ├── DemoPrintFileWithEncryptionController.cs │ ├── DemoPrintFileWithPwdProtectionController.cs │ ├── DemoPrintFileXLSController.cs │ ├── HomeController.cs │ └── WebClientPrintAPIController.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.3.1.intellisense.js │ ├── jquery-3.3.1.js │ ├── jquery-3.3.1.min.js │ ├── jquery-3.3.1.min.map │ ├── jquery-3.3.1.slim.js │ ├── jquery-3.3.1.slim.min.js │ ├── jquery-3.3.1.slim.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ └── modernizr-2.8.3.js ├── Views │ ├── DemoPrintCommands │ │ └── Index.cshtml │ ├── DemoPrintFile │ │ └── Index.cshtml │ ├── DemoPrintFileDOC │ │ └── Index.cshtml │ ├── DemoPrintFilePDF │ │ └── Index.cshtml │ ├── DemoPrintFileWithEncryption │ │ └── Index.cshtml │ ├── DemoPrintFileWithPwdProtection │ │ └── Index.cshtml │ ├── DemoPrintFileXLS │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ ├── PrintersInfo.cshtml │ │ └── Samples.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── WCPMVCCS.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── files │ ├── GuidingPrinciplesBusinessHR_EN.pdf │ ├── LoremIpsum-PasswordProtected.doc │ ├── LoremIpsum-PasswordProtected.pdf │ ├── LoremIpsum.doc │ ├── LoremIpsum.pdf │ ├── LoremIpsum.txt │ ├── Sample-Employee-Handbook.doc │ ├── SamplePngImage.png │ ├── SampleSheet-PasswordProtected.xls │ ├── SampleSheet.xls │ ├── mixed-page-orientation.pdf │ ├── mod1.pdf │ ├── patent2pages.tif │ └── penguins300dpi.jpg ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── packages.config ├── WCPMVCVB ├── App_Start │ ├── BundleConfig.vb │ ├── FilterConfig.vb │ └── RouteConfig.vb ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── Controllers │ ├── DemoPrintCommandsController.vb │ ├── DemoPrintFileController.vb │ ├── DemoPrintFileDOCController.vb │ ├── DemoPrintFilePDFController.vb │ ├── DemoPrintFileWithEncryptionController.vb │ ├── DemoPrintFileWithPwdProtectionController.vb │ ├── DemoPrintFileXLSController.vb │ ├── HomeController.vb │ └── WebClientPrintAPIController.vb ├── Global.asax ├── Global.asax.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.3.1.intellisense.js │ ├── jquery-3.3.1.js │ ├── jquery-3.3.1.min.js │ ├── jquery-3.3.1.min.map │ ├── jquery-3.3.1.slim.js │ ├── jquery-3.3.1.slim.min.js │ ├── jquery-3.3.1.slim.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ └── modernizr-2.8.3.js ├── Views │ ├── DemoPrintCommands │ │ └── Index.vbhtml │ ├── DemoPrintFile │ │ └── Index.vbhtml │ ├── DemoPrintFileDOC │ │ └── Index.vbhtml │ ├── DemoPrintFilePDF │ │ └── Index.vbhtml │ ├── DemoPrintFileWithEncryption │ │ └── Index.vbhtml │ ├── DemoPrintFileWithPwdProtection │ │ └── Index.vbhtml │ ├── DemoPrintFileXLS │ │ └── Index.vbhtml │ ├── Home │ │ ├── Index.vbhtml │ │ ├── PrintersInfo.vbhtml │ │ └── Samples.vbhtml │ ├── Shared │ │ ├── Error.vbhtml │ │ └── _Layout.vbhtml │ ├── Web.config │ └── _ViewStart.vbhtml ├── WCPMVCVB.vbproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── files │ ├── GuidingPrinciplesBusinessHR_EN.pdf │ ├── LoremIpsum-PasswordProtected.doc │ ├── LoremIpsum-PasswordProtected.pdf │ ├── LoremIpsum.doc │ ├── LoremIpsum.pdf │ ├── LoremIpsum.txt │ ├── Sample-Employee-Handbook.doc │ ├── SamplePngImage.png │ ├── SampleSheet-PasswordProtected.xls │ ├── SampleSheet.xls │ ├── mixed-page-orientation.pdf │ ├── patent2pages.tif │ └── penguins300dpi.jpg ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── packages.config ├── WCPWebFormsCS ├── DemoPrintCommands.aspx ├── DemoPrintCommandsHandler.ashx ├── DemoPrintFile.aspx ├── DemoPrintFileDOC.aspx ├── DemoPrintFileDOCHandler.ashx ├── DemoPrintFileHandler.ashx ├── DemoPrintFilePDF.aspx ├── DemoPrintFilePDFHandler.ashx ├── DemoPrintFileWithEncryption.aspx ├── DemoPrintFileWithEncryptionHandler.ashx ├── DemoPrintFileWithPwdProtection.aspx ├── DemoPrintFileWithPwdProtectionHandler.ashx ├── DemoPrintFileXLS.aspx ├── DemoPrintFileXLSHandler.ashx ├── Index.aspx ├── MasterPage.master ├── PrintersInfo.aspx ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── webclienttools - FTP.pubxml │ │ ├── webclienttools - FTP.pubxml.user │ │ ├── webclienttools - Web Deploy.pubxml │ │ └── webclienttools - Web Deploy.pubxml.user ├── Samples.aspx ├── WCPWebFormsCS.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebClientPrintAPI.ashx ├── files │ ├── GuidingPrinciplesBusinessHR_EN.pdf │ ├── LoremIpsum-PasswordProtected.doc │ ├── LoremIpsum-PasswordProtected.pdf │ ├── LoremIpsum.doc │ ├── LoremIpsum.pdf │ ├── LoremIpsum.txt │ ├── Project-Scheduling-Monitoring-Tool.xls │ ├── Sample-Employee-Handbook.doc │ ├── SamplePngImage.png │ ├── SampleSheet-PasswordProtected.xls │ ├── SampleSheet.xls │ ├── mixed-page-orientation.pdf │ ├── patent2pages.tif │ └── penguins300dpi.jpg └── packages.config └── WCPWebFormsVB ├── DemoPrintCommands.aspx ├── DemoPrintCommandsHandler.ashx ├── DemoPrintFile.aspx ├── DemoPrintFileDOC.aspx ├── DemoPrintFileDOCHandler.ashx ├── DemoPrintFileHandler.ashx ├── DemoPrintFilePDF.aspx ├── DemoPrintFilePDFHandler.ashx ├── DemoPrintFileWithEncryption.aspx ├── DemoPrintFileWithEncryptionHandler.ashx ├── DemoPrintFileWithPwdProtection.aspx ├── DemoPrintFileWithPwdProtectionHandler.ashx ├── DemoPrintFileXLS.aspx ├── DemoPrintFileXLSHandler.ashx ├── Index.aspx ├── MasterPage.master ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── MyExtensions │ └── MyWebExtension.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── PrintersInfo.aspx ├── Samples.aspx ├── WCPWebFormsVB.vbproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebClientPrintAPI.ashx ├── files ├── GuidingPrinciplesBusinessHR_EN.pdf ├── LoremIpsum-PasswordProtected.doc ├── LoremIpsum-PasswordProtected.pdf ├── LoremIpsum.doc ├── LoremIpsum.pdf ├── LoremIpsum.txt ├── Project-Scheduling-Monitoring-Tool.xls ├── Sample-Employee-Handbook.doc ├── SamplePngImage.png ├── SampleSheet-PasswordProtected.xls ├── SampleSheet.xls ├── mixed-page-orientation.pdf ├── patent2pages.tif └── penguins300dpi.jpg └── packages.config /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/README.md -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintCommandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintCommandsController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintFileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintFileController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintFileDOCController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintFileDOCController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintFilePDFController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintFilePDFController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintFileWithEncryptionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintFileWithEncryptionController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintFileWithPwdProtectionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintFileWithPwdProtectionController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/DemoPrintFileXLSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/DemoPrintFileXLSController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Controllers/WebClientPrintAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Controllers/WebClientPrintAPIController.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Program.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - FTP.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - FTP.pubxml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - FTP.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - FTP.pubxml.user -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml.user -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Properties/launchSettings.json -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Startup.cs -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintCommands/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintCommands/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintFile/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintFile/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintFileDOC/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintFileDOC/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintFilePDF/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintFilePDF/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintFileWithEncryption/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintFileWithEncryption/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintFileWithPwdProtection/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintFileWithPwdProtection/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/DemoPrintFileXLS/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/DemoPrintFileXLS/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/Home/PrintersInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/Home/PrintersInfo.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/Home/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/Home/Samples.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/WCPAspNetCoreMvcCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/WCPAspNetCoreMvcCS.csproj -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/appsettings.Development.json -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/appsettings.json -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/GuidingPrinciplesBusinessHR_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/GuidingPrinciplesBusinessHR_EN.pdf -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/LoremIpsum-PasswordProtected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/LoremIpsum-PasswordProtected.doc -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/LoremIpsum-PasswordProtected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/LoremIpsum-PasswordProtected.pdf -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/LoremIpsum.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/LoremIpsum.doc -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/LoremIpsum.pdf -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/LoremIpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/LoremIpsum.txt -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/Project-Scheduling-Monitoring-Tool.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/Project-Scheduling-Monitoring-Tool.xls -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/Sample-Employee-Handbook.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/Sample-Employee-Handbook.doc -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/SamplePngImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/SamplePngImage.png -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/SampleSheet-PasswordProtected.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/SampleSheet-PasswordProtected.xls -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/SampleSheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/SampleSheet.xls -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/mixed-page-orientation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/mixed-page-orientation.pdf -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/patent2pages.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/patent2pages.tif -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/files/penguins300dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/files/penguins300dpi.jpg -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/css/site.css -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/js/site.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /WCPAspNetCoreMvcCS/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPAspNetCoreMvcCS/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /WCPMVCCS/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WCPMVCCS/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /WCPMVCCS/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WCPMVCCS/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/Site.css -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap.css -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap.css.map -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WCPMVCCS/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintCommandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintCommandsController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintFileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintFileController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintFileDOCController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintFileDOCController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintFilePDFController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintFilePDFController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintFileWithEncryptionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintFileWithEncryptionController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintFileWithPwdProtectionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintFileWithPwdProtectionController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/DemoPrintFileXLSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/DemoPrintFileXLSController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Controllers/WebClientPrintAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Controllers/WebClientPrintAPIController.cs -------------------------------------------------------------------------------- /WCPMVCCS/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Global.asax -------------------------------------------------------------------------------- /WCPMVCCS/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Global.asax.cs -------------------------------------------------------------------------------- /WCPMVCCS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.intellisense.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.min.map -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.slim.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery-3.3.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery-3.3.1.slim.min.map -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WCPMVCCS/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintCommands/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintCommands/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintFile/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintFile/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintFileDOC/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintFileDOC/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintFilePDF/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintFilePDF/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintFileWithEncryption/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintFileWithEncryption/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintFileWithPwdProtection/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintFileWithPwdProtection/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/DemoPrintFileXLS/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/DemoPrintFileXLS/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/Home/PrintersInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/Home/PrintersInfo.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/Home/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/Home/Samples.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/Web.config -------------------------------------------------------------------------------- /WCPMVCCS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WCPMVCCS/WCPMVCCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/WCPMVCCS.csproj -------------------------------------------------------------------------------- /WCPMVCCS/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Web.Debug.config -------------------------------------------------------------------------------- /WCPMVCCS/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Web.Release.config -------------------------------------------------------------------------------- /WCPMVCCS/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/Web.config -------------------------------------------------------------------------------- /WCPMVCCS/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/favicon.ico -------------------------------------------------------------------------------- /WCPMVCCS/files/GuidingPrinciplesBusinessHR_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/GuidingPrinciplesBusinessHR_EN.pdf -------------------------------------------------------------------------------- /WCPMVCCS/files/LoremIpsum-PasswordProtected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/LoremIpsum-PasswordProtected.doc -------------------------------------------------------------------------------- /WCPMVCCS/files/LoremIpsum-PasswordProtected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/LoremIpsum-PasswordProtected.pdf -------------------------------------------------------------------------------- /WCPMVCCS/files/LoremIpsum.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/LoremIpsum.doc -------------------------------------------------------------------------------- /WCPMVCCS/files/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/LoremIpsum.pdf -------------------------------------------------------------------------------- /WCPMVCCS/files/LoremIpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/LoremIpsum.txt -------------------------------------------------------------------------------- /WCPMVCCS/files/Sample-Employee-Handbook.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/Sample-Employee-Handbook.doc -------------------------------------------------------------------------------- /WCPMVCCS/files/SamplePngImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/SamplePngImage.png -------------------------------------------------------------------------------- /WCPMVCCS/files/SampleSheet-PasswordProtected.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/SampleSheet-PasswordProtected.xls -------------------------------------------------------------------------------- /WCPMVCCS/files/SampleSheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/SampleSheet.xls -------------------------------------------------------------------------------- /WCPMVCCS/files/mixed-page-orientation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/mixed-page-orientation.pdf -------------------------------------------------------------------------------- /WCPMVCCS/files/mod1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/mod1.pdf -------------------------------------------------------------------------------- /WCPMVCCS/files/patent2pages.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/patent2pages.tif -------------------------------------------------------------------------------- /WCPMVCCS/files/penguins300dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/files/penguins300dpi.jpg -------------------------------------------------------------------------------- /WCPMVCCS/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WCPMVCCS/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WCPMVCCS/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WCPMVCCS/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WCPMVCCS/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /WCPMVCCS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCCS/packages.config -------------------------------------------------------------------------------- /WCPMVCVB/App_Start/BundleConfig.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/App_Start/BundleConfig.vb -------------------------------------------------------------------------------- /WCPMVCVB/App_Start/FilterConfig.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/App_Start/FilterConfig.vb -------------------------------------------------------------------------------- /WCPMVCVB/App_Start/RouteConfig.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/App_Start/RouteConfig.vb -------------------------------------------------------------------------------- /WCPMVCVB/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/Site.css -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap.css -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap.css.map -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WCPMVCVB/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintCommandsController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintCommandsController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintFileController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintFileController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintFileDOCController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintFileDOCController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintFilePDFController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintFilePDFController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintFileWithEncryptionController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintFileWithEncryptionController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintFileWithPwdProtectionController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintFileWithPwdProtectionController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/DemoPrintFileXLSController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/DemoPrintFileXLSController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/HomeController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/HomeController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Controllers/WebClientPrintAPIController.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Controllers/WebClientPrintAPIController.vb -------------------------------------------------------------------------------- /WCPMVCVB/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Global.asax -------------------------------------------------------------------------------- /WCPMVCVB/Global.asax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Global.asax.vb -------------------------------------------------------------------------------- /WCPMVCVB/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /WCPMVCVB/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/Application.myapp -------------------------------------------------------------------------------- /WCPMVCVB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /WCPMVCVB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /WCPMVCVB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/Resources.resx -------------------------------------------------------------------------------- /WCPMVCVB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /WCPMVCVB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/My Project/Settings.settings -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.intellisense.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.min.map -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.slim.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery-3.3.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery-3.3.1.slim.min.map -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /WCPMVCVB/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintCommands/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintCommands/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintFile/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintFile/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintFileDOC/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintFileDOC/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintFilePDF/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintFilePDF/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintFileWithEncryption/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintFileWithEncryption/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintFileWithPwdProtection/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintFileWithPwdProtection/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/DemoPrintFileXLS/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/DemoPrintFileXLS/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/Home/Index.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/Home/Index.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/Home/PrintersInfo.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/Home/PrintersInfo.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/Home/Samples.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/Home/Samples.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/Shared/Error.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/Shared/Error.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/Shared/_Layout.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/Shared/_Layout.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/Web.config -------------------------------------------------------------------------------- /WCPMVCVB/Views/_ViewStart.vbhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Views/_ViewStart.vbhtml -------------------------------------------------------------------------------- /WCPMVCVB/WCPMVCVB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/WCPMVCVB.vbproj -------------------------------------------------------------------------------- /WCPMVCVB/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Web.Debug.config -------------------------------------------------------------------------------- /WCPMVCVB/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Web.Release.config -------------------------------------------------------------------------------- /WCPMVCVB/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/Web.config -------------------------------------------------------------------------------- /WCPMVCVB/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/favicon.ico -------------------------------------------------------------------------------- /WCPMVCVB/files/GuidingPrinciplesBusinessHR_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/GuidingPrinciplesBusinessHR_EN.pdf -------------------------------------------------------------------------------- /WCPMVCVB/files/LoremIpsum-PasswordProtected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/LoremIpsum-PasswordProtected.doc -------------------------------------------------------------------------------- /WCPMVCVB/files/LoremIpsum-PasswordProtected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/LoremIpsum-PasswordProtected.pdf -------------------------------------------------------------------------------- /WCPMVCVB/files/LoremIpsum.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/LoremIpsum.doc -------------------------------------------------------------------------------- /WCPMVCVB/files/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/LoremIpsum.pdf -------------------------------------------------------------------------------- /WCPMVCVB/files/LoremIpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/LoremIpsum.txt -------------------------------------------------------------------------------- /WCPMVCVB/files/Sample-Employee-Handbook.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/Sample-Employee-Handbook.doc -------------------------------------------------------------------------------- /WCPMVCVB/files/SamplePngImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/SamplePngImage.png -------------------------------------------------------------------------------- /WCPMVCVB/files/SampleSheet-PasswordProtected.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/SampleSheet-PasswordProtected.xls -------------------------------------------------------------------------------- /WCPMVCVB/files/SampleSheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/SampleSheet.xls -------------------------------------------------------------------------------- /WCPMVCVB/files/mixed-page-orientation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/mixed-page-orientation.pdf -------------------------------------------------------------------------------- /WCPMVCVB/files/patent2pages.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/patent2pages.tif -------------------------------------------------------------------------------- /WCPMVCVB/files/penguins300dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/files/penguins300dpi.jpg -------------------------------------------------------------------------------- /WCPMVCVB/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WCPMVCVB/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WCPMVCVB/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WCPMVCVB/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WCPMVCVB/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /WCPMVCVB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPMVCVB/packages.config -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintCommands.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintCommands.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintCommandsHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintCommandsHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFile.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFile.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileDOC.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileDOC.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileDOCHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileDOCHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFilePDF.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFilePDF.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFilePDFHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFilePDFHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileWithEncryption.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileWithEncryption.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileWithEncryptionHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileWithEncryptionHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileWithPwdProtection.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileWithPwdProtection.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileWithPwdProtectionHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileWithPwdProtectionHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileXLS.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileXLS.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/DemoPrintFileXLSHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/DemoPrintFileXLSHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Index.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/MasterPage.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/MasterPage.master -------------------------------------------------------------------------------- /WCPWebFormsCS/PrintersInfo.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/PrintersInfo.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WCPWebFormsCS/Properties/PublishProfiles/webclienttools - FTP.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Properties/PublishProfiles/webclienttools - FTP.pubxml -------------------------------------------------------------------------------- /WCPWebFormsCS/Properties/PublishProfiles/webclienttools - FTP.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Properties/PublishProfiles/webclienttools - FTP.pubxml.user -------------------------------------------------------------------------------- /WCPWebFormsCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml -------------------------------------------------------------------------------- /WCPWebFormsCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Properties/PublishProfiles/webclienttools - Web Deploy.pubxml.user -------------------------------------------------------------------------------- /WCPWebFormsCS/Samples.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Samples.aspx -------------------------------------------------------------------------------- /WCPWebFormsCS/WCPWebFormsCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/WCPWebFormsCS.csproj -------------------------------------------------------------------------------- /WCPWebFormsCS/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Web.Debug.config -------------------------------------------------------------------------------- /WCPWebFormsCS/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Web.Release.config -------------------------------------------------------------------------------- /WCPWebFormsCS/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/Web.config -------------------------------------------------------------------------------- /WCPWebFormsCS/WebClientPrintAPI.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/WebClientPrintAPI.ashx -------------------------------------------------------------------------------- /WCPWebFormsCS/files/GuidingPrinciplesBusinessHR_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/GuidingPrinciplesBusinessHR_EN.pdf -------------------------------------------------------------------------------- /WCPWebFormsCS/files/LoremIpsum-PasswordProtected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/LoremIpsum-PasswordProtected.doc -------------------------------------------------------------------------------- /WCPWebFormsCS/files/LoremIpsum-PasswordProtected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/LoremIpsum-PasswordProtected.pdf -------------------------------------------------------------------------------- /WCPWebFormsCS/files/LoremIpsum.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/LoremIpsum.doc -------------------------------------------------------------------------------- /WCPWebFormsCS/files/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/LoremIpsum.pdf -------------------------------------------------------------------------------- /WCPWebFormsCS/files/LoremIpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/LoremIpsum.txt -------------------------------------------------------------------------------- /WCPWebFormsCS/files/Project-Scheduling-Monitoring-Tool.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/Project-Scheduling-Monitoring-Tool.xls -------------------------------------------------------------------------------- /WCPWebFormsCS/files/Sample-Employee-Handbook.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/Sample-Employee-Handbook.doc -------------------------------------------------------------------------------- /WCPWebFormsCS/files/SamplePngImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/SamplePngImage.png -------------------------------------------------------------------------------- /WCPWebFormsCS/files/SampleSheet-PasswordProtected.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/SampleSheet-PasswordProtected.xls -------------------------------------------------------------------------------- /WCPWebFormsCS/files/SampleSheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/SampleSheet.xls -------------------------------------------------------------------------------- /WCPWebFormsCS/files/mixed-page-orientation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/mixed-page-orientation.pdf -------------------------------------------------------------------------------- /WCPWebFormsCS/files/patent2pages.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/patent2pages.tif -------------------------------------------------------------------------------- /WCPWebFormsCS/files/penguins300dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/files/penguins300dpi.jpg -------------------------------------------------------------------------------- /WCPWebFormsCS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsCS/packages.config -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintCommands.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintCommands.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintCommandsHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintCommandsHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFile.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFile.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileDOC.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileDOC.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileDOCHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileDOCHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFilePDF.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFilePDF.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFilePDFHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFilePDFHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileWithEncryption.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileWithEncryption.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileWithEncryptionHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileWithEncryptionHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileWithPwdProtection.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileWithPwdProtection.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileWithPwdProtectionHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileWithPwdProtectionHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileXLS.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileXLS.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/DemoPrintFileXLSHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/DemoPrintFileXLSHandler.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/Index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/Index.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/MasterPage.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/MasterPage.master -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/Application.myapp -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/MyExtensions/MyWebExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/MyExtensions/MyWebExtension.vb -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/Resources.resx -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /WCPWebFormsVB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/My Project/Settings.settings -------------------------------------------------------------------------------- /WCPWebFormsVB/PrintersInfo.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/PrintersInfo.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/Samples.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/Samples.aspx -------------------------------------------------------------------------------- /WCPWebFormsVB/WCPWebFormsVB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/WCPWebFormsVB.vbproj -------------------------------------------------------------------------------- /WCPWebFormsVB/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/Web.Debug.config -------------------------------------------------------------------------------- /WCPWebFormsVB/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/Web.Release.config -------------------------------------------------------------------------------- /WCPWebFormsVB/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/Web.config -------------------------------------------------------------------------------- /WCPWebFormsVB/WebClientPrintAPI.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/WebClientPrintAPI.ashx -------------------------------------------------------------------------------- /WCPWebFormsVB/files/GuidingPrinciplesBusinessHR_EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/GuidingPrinciplesBusinessHR_EN.pdf -------------------------------------------------------------------------------- /WCPWebFormsVB/files/LoremIpsum-PasswordProtected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/LoremIpsum-PasswordProtected.doc -------------------------------------------------------------------------------- /WCPWebFormsVB/files/LoremIpsum-PasswordProtected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/LoremIpsum-PasswordProtected.pdf -------------------------------------------------------------------------------- /WCPWebFormsVB/files/LoremIpsum.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/LoremIpsum.doc -------------------------------------------------------------------------------- /WCPWebFormsVB/files/LoremIpsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/LoremIpsum.pdf -------------------------------------------------------------------------------- /WCPWebFormsVB/files/LoremIpsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/LoremIpsum.txt -------------------------------------------------------------------------------- /WCPWebFormsVB/files/Project-Scheduling-Monitoring-Tool.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/Project-Scheduling-Monitoring-Tool.xls -------------------------------------------------------------------------------- /WCPWebFormsVB/files/Sample-Employee-Handbook.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/Sample-Employee-Handbook.doc -------------------------------------------------------------------------------- /WCPWebFormsVB/files/SamplePngImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/SamplePngImage.png -------------------------------------------------------------------------------- /WCPWebFormsVB/files/SampleSheet-PasswordProtected.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/SampleSheet-PasswordProtected.xls -------------------------------------------------------------------------------- /WCPWebFormsVB/files/SampleSheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/SampleSheet.xls -------------------------------------------------------------------------------- /WCPWebFormsVB/files/mixed-page-orientation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/mixed-page-orientation.pdf -------------------------------------------------------------------------------- /WCPWebFormsVB/files/patent2pages.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/patent2pages.tif -------------------------------------------------------------------------------- /WCPWebFormsVB/files/penguins300dpi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/files/penguins300dpi.jpg -------------------------------------------------------------------------------- /WCPWebFormsVB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/WebClientPrint5-Sample/HEAD/WCPWebFormsVB/packages.config --------------------------------------------------------------------------------