我从服务器使用流数据,客户端下载filestream.write
。 在这种情况下所发生的事情是,我能下载文件,但它不会出现在下载我的浏览器。 无论是弹出的“另存为”未出现“下载吧”出现在下载部分。 环视,我想我需要包括在响应头“东西”告诉浏览器存在与此响应的附件。 此外,我想设置cookie。 要做到这一点,这是我在做什么:
[HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=" & name)]
public ActionResult Download(string name)
{
// some more code to get data in inputstream.
using (FileStream fs = System.IO.File.OpenWrite(TargetFile))
{
byte[] buffer = new byte[SegmentSize];
int bytesRead;
while ((bytesRead = inputStream.Read(buffer, 0, SegmentSize)) > 0)
{
fs.WriteAsync(buffer, 0, bytesRead);
}
}
}
return RedirectToAction("Index");
}
我得到的错误是:“System.web.httpcontext.current是一个属性,作为一个类型。”
我做的头在正确的地方更新? 是否有任何其他方式做到这一点?
是的,你是做了错误的方式尝试这个,你不应该添加页眉您的行动中作为一个属性头的方法。
HttpContext.Current.Response.AppendHeader("Content-Disposition","attachment;filename=" & name)
要么
Request.RequestContext.HttpContext.Response.AddHeader("Content-Disposition", "Attachment;filename=" & name)
更新据我了解你在做一个AJAX调用您的控制器/动作,其通过直接调用一个动作惯于文件下载工作。 你可以实现这种方式。
public void Download(string name)
{
//your logic. Sample code follows. You need to write your stream to the response.
var filestream = System.IO.File.ReadAllBytes(@"path/sourcefilename.pdf");
var stream = new MemoryStream(filestream);
stream.WriteTo(Response.OutputStream);
Response.AddHeader("Content-Disposition", "Attachment;filename=targetFileName.pdf");
Response.ContentType = "application/pdf";
}
要么
public FileStreamResult Download(string name)
{
var filestream = System.IO.File.ReadAllBytes(@"path/sourcefilename.pdf");
var stream = new MemoryStream(filestream);
return new FileStreamResult(stream, "application/pdf")
{
FileDownloadName = "targetfilename.pdf"
};
}
在您的JS点击按钮,你可以做一些类似的。
$('#btnDownload').click(function () {
window.location.href = "controller/download?name=yourargument";
});
请看看这里 。
下面是引用的网站上得到。
public FileStreamResult StreamFileFromDisk()
{
string path = AppDomain.CurrentDomain.BaseDirectory + "uploads/";
string fileName = "test.txt";
return File(new FileStream(path + fileName, FileMode.Open), "text/plain", fileName);
}
编辑1:
添加的东西,可能会更你的兴趣,从我们的好醇” SO。 您可以查看完整的细节在这里 。
public ActionResult Download()
{
var document = ...
var cd = new System.Net.Mime.ContentDisposition
{
// for example foo.bak
FileName = document.FileName,
// always prompt the user for downloading, set to true if you want
// the browser to try to show the file inline
Inline = false,
};
Response.AppendHeader("Content-Disposition", cd.ToString());
return File(document.Data, document.ContentType);
}
更改:
return RedirectToAction("Index");
至:
return File(fs, "your/content-type", "filename");
而移动return语句您使用语句内。
在过去,我建立了一个白名单,让一些域iframe中我的网站。 记住用IFRAME的网站,以及谷歌的图像缓存。
static HashSet<string> frameWhiteList = new HashSet<string> { "www.domain.com",
"mysub.domain.tld",
"partner.domain.tld" };
protected void EnforceFrameSecurity()
{
var framer = Request.UrlReferrer;
string frameOptionsValue = "SAMEORIGIN";
if (framer != null)
{
if (frameWhiteList.Contains(framer.Host))
{
frameOptionsValue = string.Format("ALLOW-FROM {0}", framer.Host);
}
}
if (string.IsNullOrEmpty(HttpContext.Current.Response.Headers["X-FRAME-OPTIONS"]))
{
HttpContext.Current.Response.AppendHeader("X-FRAME-OPTIONS", frameOptionsValue);
}
}
public FileResult DownloadDocument(string id)
{
if (!string.IsNullOrEmpty(id))
{
try
{
var fileId = Guid.Parse(id);
var myFile = AppModel.MyFiles.SingleOrDefault(x => x.Id == fileId);
if (myFile != null)
{
byte[] fileBytes = myFile.FileData;
return File(fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet, myFile.FileName);
}
}
catch
{
}
}
return null;
}
文章来源: adding header to http response in an action inside a controller in asp.net/mvc