I have iframe in my page.
I have showreport.aspx as iframe src, i generate pdf from crystal report using ExportToHttpResponse method in page_load event.
<iframe src="ShowReport.aspx?id=100" frameborder="0" height="600" scrolling="yes" width="100%"></iframe>
But, the generated pdf in not displayed inside iframe, it's always as me to save/download.
It's not happen when i use pdf file as iframe src
<iframe src="report.pdf" frameborder="0" height="600" scrolling="yes" width="100%"></iframe>
How to handle this?
Thanks