ASP MVC Pobierz pliki Zip

Mam widok, w którym umieściłem identyfikator zdarzenia, a następnie mogę pobrać wszystkie obrazy tego wydarzenia ..... oto mój kod

[HttpPost]
    public ActionResult Index(FormCollection All)
    {
        try
        {
            var context = new MyEntities();

            var Im = (from p in context.Event_Photos
                      where p.Event_Id == 1332
                      select p.Event_Photo);

            Response.Clear();

            var downloadFileName = string.Format("YourDownload-{0}.zip", DateTime.Now.ToString("yyyy-MM-dd-HH_mm_ss"));
            Response.ContentType = "application/zip";

            Response.AddHeader("content-disposition", "filename=" + downloadFileName);

            using (ZipFile zipFile = new ZipFile())
            {
                zipFile.AddDirectoryByName("Files");
                foreach (var userPicture in Im)
                {
                    zipFile.AddFile(Server.MapPath(@"\") + userPicture.Remove(0, 1), "Files");
                }
                zipFile.Save(Response.OutputStream);

                //Response.Close();
            }
            return View();
        }
        catch (Exception ex)
        {
            return View();
        }
    }

Problem polega na tym, że za każdym razem, gdy pobieram stronę html, zamiast pobierać „Album.zip”, otrzymuję „Album.html” wszelkie pomysły ??

questionAnswers(1)

yourAnswerToTheQuestion