[
  {
    "Id": "634001",
    "ThreadId": "263048",
    "Html": "\r\n<p>Hey Guys,</p>\r\n<p>&nbsp;</p>\r\n<p>When i am trying to generate a zip file and allow user to save it to their desktop i am getting an &quot;Interrupted&quot; Error in chrome this works fine in FF. I am really stuck here and i need some help ASAP.</p>\r\n<p>the code i am using is pretty basic, Please Advice if anyone ran into this issue&nbsp;</p>\r\n<p></p>\r\n<div style=\"color:black; background-color:white\">\r\n<pre><span style=\"color:blue\">protected</span> <span style=\"color:blue\">void</span> CreateZipFile(ArrayList files)\r\n    {\r\n        Response.Clear();\r\n        Response.BufferOutput = <span style=\"color:blue\">false</span>;\r\n        Response.ContentType = <span style=\"color:#a31515\">&quot;application/zip&quot;</span>;\r\n        Response.AddHeader(<span style=\"color:#a31515\">&quot;Content-Disposition&quot;</span>, <span style=\"color:#a31515\">&quot;attachment; filename=EKSuccessBrands.zip&quot;</span>);\r\n        \r\n        <span style=\"color:blue\">using</span> (ZipFile zip = <span style=\"color:blue\">new</span> ZipFile())\r\n        {\r\n            <span style=\"color:blue\">foreach</span> (<span style=\"color:blue\">string</span> fileName <span style=\"color:blue\">in</span> files)\r\n            {\r\n                ZipEntry e = zip.AddFile(fileName, <span style=\"color:#a31515\">&quot;EKSuccessBrands&quot;</span>);\r\n            }\r\n            zip.Save(Response.OutputStream);\r\n        }\r\n        Response.Close();\r\n        Response.End();\r\n    }\r\n</pre>\r\n</div>\r\n<p></p>\r\n",
    "PostedDate": "2011-06-28T01:20:34.157-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "637241",
    "ThreadId": "263048",
    "Html": "<p>Maybe don't call Response.End().&nbsp; It throws an exception on the server side, which is probably not what you want.</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2011-07-04T18:54:03.75-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "637390",
    "ThreadId": "263048",
    "Html": "<p>Thanks! i will try it out and let you know. After spending a lot of time i have changed this to use sharzip library but i am still keen on figuring this out.</p>\r\n<p>&nbsp;</p>",
    "PostedDate": "2011-07-05T03:20:31.367-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]