1
Answer

Open PDF Inline in asp.net mvc

Usha Talakanti

Usha Talakanti

8y
1.6k
1
i want to open the pdf  inline in a new tab in  asp.net mvc4.
 
i have done in asp.net it is working 
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "inline;filename=PatientDailyReport.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.BinaryWrite(_byte);
Response.End();
but in mvc it is not working 
Answers (1)