[
  {
    "Id": "1026016",
    "ThreadId": "439227",
    "Html": "Zip created by using DotNetZip does not open using window extract all or double click, but it  unzipped with 7 zip.\r<br />\nWe converted DataTable to Csv by using an extension method, Added csv to a zip.<br />\n<pre><code> string TestCsv = extensionMethods1.ToCsv(TestDataTable);\n\n string archiveName = String.Format(&quot;TestInfo-{0}.zip&quot;, DateTime.Now.ToString(&quot;yyyy-      MM-dd-HHmmss&quot;));\n\n  Response.ContentType = &quot;application/zip&quot;;\n  Response.AddHeader(&quot;content-disposition&quot;, &quot;filename=&quot; + archiveName);\n\n  using (ZipFile TestZip = new ZipFile())\n  {\n        TestZip.AddEntry(&quot;test1.csv&quot;, TestCsv);\n        TestZip.Save(Response.OutputStream);\n  }\n  Response.Flush();\n  Response.Clear();\n</code></pre>\n\nThe downloaded zip extracted successfully using 7 zip but does not open using windows Extract All or by double clicking.\r<br />\n<br />\nPlease suggest if something is missing in the code,\r<br />\n<br />\nThanks<br />\n",
    "PostedDate": "2013-04-05T04:57:53.47-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "1276203",
    "ThreadId": "439227",
    "Html": "Try to use Response.End();  instead :)<br />\n",
    "PostedDate": "2014-07-23T19:59:27.907-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]