I have my controller action method returning pdf file as
public FileContentResult GetPDF(string filename)
{FileContentResult filecontent= new FileContentResult(Contents, "application/pdf");
HttpContext.Response.AddHeader("Content-Disposition", "inline; filename=" + filename);
return filecontent;
}
here Contents is byte[] type.
the call is madeas ajax call as
$("#uploadForm").ajaxForm({
iframe: true,
data: { filename:filename },
url: "Upload/GetPDF"
});
without ajax it is working fine ,i think i need set src to iframe to make it open in new browser tab with file name. can anybody help me because i find no solution after lot of search. Is iframe setting needed?
thanks,
michaeld