webpath assume にあったレポート(pdf)を表示したい(http://myservre/reports/myrepoft.pdf)
。現在、このようにIFrame経由で表示されていました。
strReportPDFFile = "`http://myservre/reports/myrepoft.pdf`"
<IFRAME frameborder="1" onload="onchangestate()" src="" id="ifrmShowReport" frameborder="0" height="100%" width="100%" marginwidth="0" align="top" style="overflow: none;overflow-x: auto;display:none"></IFRAME>
document.getElementById("formContainer").style.display = "block";
document.getElementById("ifrmShowReport").style.display = "block";
document.getElementById("ifrmShowReport").src = strReportPDFFile;
アドレスバーに表示されていた URL を非表示にしたい。出来ますか ?そうでない場合は、より良い代替案を提案してください。