skip to Main Content

Spanned archives with more than 65534 segments are not supported at this time – Asp.net

Our current implementation on our ASP.net website doesn't support Zip64 which it needs to, so we're moving from System.IO.Compression over to DotNetZip: https://github.com/DinoChiesa/DotNetZip This small archive: https://github.com/DinoChiesa/DotNetZip/files/10184907/Zip.zip Throws the error: Spanned archives with more than 65534 segments are not supported…

VIEW QUESTION

ASP.NET download csv file as zip?

I've been reading through: https://www.aspsnippets.com/Articles/Export-data-from-SQL-Server-to-CSV-file-in-ASPNet-using-C-and-VBNet.aspx Rather than only have the option to download as csv as described there in: //Download the CSV file. Response.Clear(); Response.Buffer = true; Response.AddHeader("content-disposition", "attachment;filename=SqlExport.csv"); Response.Charset = ""; Response.ContentType = "application/text"; Response.Output.Write(csv); Response.Flush(); Response.End(); is there…

VIEW QUESTION
Back To Top
Search