OfficiallyYours
New Member
I am displaying a pdf with an object tag and in FF 19 it displays a blank pdf. I can download the pdf and the content will be there. This works in Chrome, FF 11 and IE. Here is my html\[code\]<object data="http://stackoverflow.com/questions/15594051/<%=Url.Content(Model.PdfFile) %>" type="application/pdf" width="100%" height="400px"> <p> It appears you don't have a PDF plugin for this browser. Please <a href="http://stackoverflow.com/questions/15594051/<%=Url.Content(Model.RelitaveFiles.FirstOrDefault()) %>">click here</a> to download and review the PDF file. </p> </object>\[/code\]I have tried using an IFrame as well with no luck\[code\]<iframe src="http://stackoverflow.com/questions/15594051/<%=Url.Content(Model.PdfFile) %>"> <p> It appears you don't have a PDF plugin for this browser. Please <a href="http://stackoverflow.com/questions/15594051/<%=Url.Content(Model.RelitaveFiles.FirstOrDefault()) %>">click here</a> to download and review the PDF file. </p> </iframe> \[/code\]