eKe*_*ek0 18 c# asp.net-mvc encoding http
当文件名是"Algunas MARCAS quenosacompañan" System.FormatException时,当我尝试下载该文件时,ASP.NET MVC会引发.但如果文件名是"Asistente de Gerencia Comercial"则不然.
我想这是因为与UTF-8编码有关的东西,但我不知道如何编码该字符串.
如果我是对的,我怎么能在UTF-8编码中编码字符串?如果我不对,我的问题是什么?
ZZ *_*der 27
我编码这样的文件名下载,
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename= " + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
Run Code Online (Sandbox Code Playgroud)
根据ZZ Coder的回答,因为我正在使用FileResult,所以我决定将文件名编码为:
HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
20747 次 |
| 最近记录: |