I have a pdf that i returned by stream in a json result by my GetTestReport action:
return this.Json(pdfInBytes);
And in my view:
$.post('@Url.Action("GetTestReport", "Reports")', function(data) {
// What have i put here?
});
How can i show the pdf in a entire page, or in a specific div?