Fading Coder

One Final Commit for the Last Sprint

Streaming Excel Files from ASP.NET to the Client Browser

Directly transmittign an Excel workbook from an ASP.NET backend to a web client involves transforming object collections into tabular data, serializing the output to a memory buffer, and configuring the apropriate HTTP respnose headers. public void ExportCollectionAsExcel<T>(IEnumerable<T&g...

Exporting Vue el-Table Data to Formatted Excel Files

Dependecny Installation npm install xlsx xlsx-style file-saver Webpack Configuraiton Add to vue.config.js to resolve xlsx-style conflicts: module.exports = { chainWebpack: config => { config.externals({ "./cptable": "var cptable" }); } } Export Utility Implemantation Create ta...