Hi,
You can try this: ensure your .NET application sets the Content-Type to "application/pdf" and the Content-Disposition header to "attachment; filename=\"yourfile.pdf\"" before writing the binary data with BinaryWrite, then call Response.Flush() and Response.End(); additionally, in IIS, make sure the server isn’t compressing PDF responses (disable dynamic compression for PDFs) and that HTTPS is properly configured, because recent Edge updates sometimes block downloads over HTTP or with certain headers, these steps often resolve the issue where Edge fails to download PDFs while Chrome works fine.
Do you want me to give a small code example showing the recommended way to stream the PDF to Edge safely?
Kind regards,