Duplicate headers received from server

前端 未结 5 491
难免孤独
难免孤独 2020-12-04 08:07

Duplicate headers received from server

The response from the server contained duplicate headers. This problem is generally the result of a misconfigured

5条回答
  •  孤城傲影
    2020-12-04 09:12

    This ones a little old but was high in the google ranking so I thought I would throw in the answer I found from Chrome, pdf display, Duplicate headers received from the server

    Basically my problem also was that the filename contained commas. Do a replace on commas to remove them and you should be fine. My function to make a valid filename is below.

        public static string MakeValidFileName(string name)
        {
            string invalidChars = Regex.Escape(new string(System.IO.Path.GetInvalidFileNameChars()));
            string invalidReStr = string.Format(@"[{0}]+", invalidChars);
            string replace = Regex.Replace(name, invalidReStr, "_").Replace(";", "").Replace(",", "");
            return replace;
        }
    

提交回复
热议问题