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

link|improve this question

45% accept rate
the call to this action method is an ajax call, is that a reason for not opening in new tab, because i clicked ctrl+GEdPdf link openend new tab of same page. – michael Jul 29 '11 at 5:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.