hi
I download option in asp.net multiple pdf file in my page i meet this issue how to solve this
my error this
Duplicate headers received from server
he response from the server contained duplicate headers.
This problem is generally the result of a misconfigured website or proxy. Only the website or proxy administrator can fix this issue.
Error code: ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION
MyCode like this for Download
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment; filename="test.pdf");
Response.OutputStream.Write(fileContent, 0, fileContent.Length);
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com