文件下载对话框

发布于 2024-10-28 22:08:27 字数 290 浏览 0 评论 0原文

我有一个问题。

在 ASP.NET 应用程序中,我创建了指向某些文档的链接,文档名称存储在数据库中,当用户单击链接时,会出现“文件下载”对话框。

当文件名是塞尔维亚西里尔文时出现问题,文件下载对话框显示文件名带有一些奇怪的字符。查看图片

文件下载文件名奇怪字符

当我使用 HtmlEncode 作为文件名时 IE 工作正常(显示正确的文件名),但是那么问题出在FireFox中。

谢谢。

I have one problem.

In ASP.NET application i created link to some document, document name is stored in database and when user click on link File Download dialog appears.

Problem occurs when file name is Serbian Cyrilic, File Download dialog shows file name with some strange characters. See image

File download file name strange characters

Whene i use HtmlEncode for file name IE works fine (shows right file name), but then problem is in FireFox.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界如花海般美丽 2024-11-04 22:08:27

您必须对非 AscII 字符进行编码。我正在使用这个方法:

    public static string URLEncode(string tekst)
    {
        byte[] t = Encoding.UTF8.GetBytes(tekst);
        string s = "";
        for (int i = 0; i < t.Length; i++)
        {
            byte b = t[i];
            int ib = Convert.ToInt32(b);
            if (ib < 46 || ib > 126)
            {
                s += "%" + ib.ToString("x");
            }
            else
            {
                s += Convert.ToChar(b);
            }
        }
        return s;
    }  

并检查是否必须对其进行编码 - 它应该可以在 IE 和 FF 中工作:

if (Page.Request.Browser.IsBrowser("IE"))  
fileName = URLEncode(fileName);

You have to encode non-AscII characters. I'm using this method:

    public static string URLEncode(string tekst)
    {
        byte[] t = Encoding.UTF8.GetBytes(tekst);
        string s = "";
        for (int i = 0; i < t.Length; i++)
        {
            byte b = t[i];
            int ib = Convert.ToInt32(b);
            if (ib < 46 || ib > 126)
            {
                s += "%" + ib.ToString("x");
            }
            else
            {
                s += Convert.ToChar(b);
            }
        }
        return s;
    }  

And check if you have to encode it - it should work then in IE and FF:

if (Page.Request.Browser.IsBrowser("IE"))  
fileName = URLEncode(fileName);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文