Posted on: 6/11/2015 4:52:31 PM | Views : 723

There are two web form pages. DocView.aspx will get data from DocPdf.aspx to display pdf.
It could display correctly. However, when I want to fit pdf to page, I really don't know where to add "view=FitV"
I search quite long time, but None of result helps.
Here are most important part source code of two pages.
DocView.aspx:
        <object data="DocPdf.aspx" type="application/pdf" width="100%" height="600px">                        <param name="view" value="FitV" />         </object>
DocPdf.aspx
protected void Page_Load(object sender, EventArgs e) { string f ...

Go to the complete details ...