We are migrating an ASP.NET MVC application, which had the feature to open PDF in a new tab via FileContentResult.
return new FileContentResult(byteArray, \
IE does not allow us to open Data URL in new tab (possibly security reason) and there no workaround - faced same issue earlier.
We use msSaveOrOpenBlob - found no alternative.