FileStreamResult NOT returning file – Asp.net
I have very simple example to export some data to Excel file, in some reason I see the bytes in the response but no file downloaded why? public async Task<IActionResult> exportRecordsToExcel() { var file = await ServiceRequestBL.ExportFO_SrviceRequestToExcel(); return file; }…