Question PDF in showModalDialog (Help)

kkc85

New member
Joined
Oct 12, 2010
Messages
2
Programming Experience
Beginner
Hi all,

I am so suffer with the following screen shot:
modal.jpg

which is the PDF is not display in full size..

what I did in order to get the pdf to be display is as code below

function MyAreaTabActivated(sender, e) {

ret = window.showModalDialog('../E-TravelWork/JobTitle.htm', null, 'dialogWidth:800px;dialogHeight:500px;center:1;help:no;scroll:yes;status:no;resizable:no;');
return true;
}

In JobTitle.htm

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Job Title</title>
</head>
<body>
<iframe runat="server" src="ETJobTitlePDF.aspx" width="100%" height="100%"></iframe>
</body>
</html>

would be appreciate if any expert around here able to solved my problem since i was stuck on this for so long

Thanks
kkc85
 
Back
Top