目前我正在新窗口中显示文件。它工作正常。我想在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弹出窗口中显示而不是在新窗口中显示它。谁能建议我怎么做?