Encabezados duplicados recibidos del servidor
La respuesta del servidor contenía encabezados duplicados. Este problema generalmente es el resultado de un sitio web o proxy mal configurado. Solo el administrador del sitio web o del proxy puede solucionar este problema.
Error 349 (net :: ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION): Se recibieron varios encabezados de disposición de contenido distintos. Esto no está permitido para proteger contra ataques de división de respuesta HTTP.
Encontré este error al exportar a pdf en Chrome.
Response.Buffer = false;
Response.ClearHeaders();
string ext = objProp.PACKAGEFILENAME.Substring(objProp.PACKAGEFILENAME.LastIndexOf("."));
string ext1 = ext.Substring(1);
Response.ContentType = ext1;
Response.AddHeader("Content-Disposition", "target;_blank,attachment; filename=" + objProp.PACKAGEFILENAME);
const int ChunkSize = 1024;
byte[] binary = objProp.PACKAGEDOCUMENT;
System.IO.MemoryStream ms = new System.IO.MemoryStream(binary);
int SizeToWrite = ChunkSize;
for (int i = 0; i < binary.GetUpperBound(0) - 1; i = i + ChunkSize)
{
if (!Response.IsClientConnected) return;
if (i + ChunkSize >= binary.Length) SizeToWrite = binary.Length - i;
byte[] chunk = new byte[SizeToWrite];
ms.Read(chunk, 0, SizeToWrite);
Response.BinaryWrite(chunk);
Response.Flush();
}
Response.Close();
¿Cómo arreglar esto?
Response.AddHeader("content-disposition", "attachment; filename=\"" + FileNameWithCommas + "\"");