Tip: Asp.net下載預設檔案名稱裡包含空格時,如何防止FireFox只截取空格前一部分作為檔案名稱

來源:互聯網
上載者:User
以前寫過一個Post:Tip:如何指定瀏覽器下載並儲存動態產生的資料時對話方塊裡的預設檔案名稱,但是如果指定的檔案名稱裡包含了空格,FireFox就會截取空格前的部分作為預設檔案名稱.
解決方案很簡單:用雙引號把檔案名稱括起來:                Response.AppendHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
                Response.ContentType = "application/octet-stream";

不過還是有一個問題沒解決,在IE中,如果檔案名稱包含兩個英文名點(period, 字元'.')的話,它會在第一個點前自動加個"[1]",於是你原來的檔案名稱"aaa.bbb.whatever"就變成了"aaa[1].bbb.whatever". 哪位知道怎麼解決這個問題,給大家分享一下?

--------
Update: 根據微軟的說明,第二個問題根本就無法解決。
我說,大家一起勸使用者們扔掉IE吧!

--------
Update:
第二個問題可以這樣解決:                if (Request.Browser.Browser.Contains("IE"))
                {
                    string ext = fileName.Substring(fileName.LastIndexOf('.'));
                    string name = fileName.Remove(fileName.Length - ext.Length);
                    name = name.Replace(".", "%2e");
                    fileName = name + ext;
                }
                Response.AppendHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
                Response.ContentType = "application/octet-stream";

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.