如何在jquery弹出窗口中显示上传的文件?

时间:2016-03-30 07:08:38

标签: jquery asp.net-mvc-4

目前我正在新窗口中显示文件。它工作正常。我想在jquery弹出窗口中显示文件。这是我的代码。

 public ActionResult Download(string filepath)
        {
            service.Service objService = new service.Service();
            byte[] result = objService.DownloadFileFromDMS(filepath);
            string contentType = MimeMapping.GetMimeMapping(filepath);

            var cd = new System.Net.Mime.ContentDisposition
            {
                FileName = Path.GetFileName(filepath),
                Inline = true,
            };
            Response.AppendHeader("Content-Disposition", cd.ToString());
            return File(result, contentType);

        }

这里byte []从服务器接收字节。我想在jquery弹出窗口中显示而不是在新窗口中显示它。谁能建议我怎么做?

0 个答案:

没有答案