如果文件名包含重音符号,它在 Opera、FF、Chrome 和 IE9 中可以正常工作。
但是在 IE8 中文件类型是“未知文件类型”,并且显示“文件”作为文件名(实际上是 URL 的最后部分)。
有谁知道解决方法?除了替换文件名中的“特殊”字符之外?
测试代码:(文件|新建项目|添加控制器)
public class FileController : Controller
{
public ActionResult Index(bool? Accents)
{
byte[] content = new byte[] { 1, 2, 3, 4 };
return File(content, "application/octet-stream", true.Equals(Accents) ? "dsaé.txt" : "dsae.txt");
}
}
像这样测试它: http://localhost/file和 http://localhost/file?accents=true
编辑 => 对我来说的“解决方案”,如果有人感兴趣的话:
public class FileContentResultStupidIE : FileContentResult //yeah, maybe i am not totally "politically correct", but still...
{
public FileContentResultStupidIE(byte[] fileContents, string contentType) : base(fileContents, contentType) { }
public override void ExecuteResult(ControllerContext context)
{
var b = context.HttpContext.Request.Browser;
if (b != null && b.Browser.Equals("ie", StringComparison.OrdinalIgnoreCase) && b.MajorVersion <= 8)
{
context.HttpContext.Response.AppendHeader("Content-Disposition", "attachment; filename=\"" + HttpUtility.UrlPathEncode(base.FileDownloadName) + "\"");
WriteFile(context.HttpContext.Response);
}
else
{
base.ExecuteResult(context);
}
}
}