1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <HTML>
- <HEAD>
- <META http-equiv="Content-Type" content="text/html; charset=gb2312">
- <META http-equiv="Content-Style-Type" content="text/css">
- <META http-equiv="Content-Script-Type" content="text/javascript">
- <TITLE>Checking if Acrobat Reader installed (IE4+)...</TITLE>
- <%
- request.setCharacterEncoding("UTF-8"); //防止乱码问题
- String value = request.getParameter("value");
- String width = request.getParameter("width");
- String height = request.getParameter("height");
- %>
- <SCRIPT for="window" event="onload">
- <!--
- document.all [
- document.all.PDFNotKnown ? "IfNoAcrobat" : "IfAcrobat"
- ] .style.display = "block";
- //-->
- </SCRIPT>
- </HEAD>
- <BODY scroll=no>
- <NOSCRIPT>
- Cannot determine if you have Acrobat Reader (or the full Acrobat)
- installed <FONT size="-1">(because JavaScript is unavailable or
- turned off)</FONT>.
- </NOSCRIPT>
- <DIV id="IfNoAcrobat" style="display:none">
- 你需要先安装Adobe Reader才能正常浏览文件,请点击<a href=http://get.adobe.com/cn/reader/download/?installer=Reader_11.0_Chinese_Simplified_for_Windows target="_blank">这里</a>下载Adobe Reader.
- </DIV>
- <OBJECT type="application/pdf" width=0 height=0 style="display:none">
- <DIV id="PDFNotKnown" style="display:none"> </DIV>
- </OBJECT>
- <DIV id=showdiv style="Z-INDEX: 0; LEFT:10px; WIDTH: 900px; POSITION: absolute; TOP: 0px; HEIGHT: 10px">
- <object id="adobeobject" classid="clsid:CA8A9780-280D-11CF-A24D-444553540000" width="<%=width %>" height="<%=height %>" border="0" top="-10" name="pdf">
- <param name="toolbar" value="false">
- <param name="_Version" value="65539">
- <param name="_ExtentX" value="20108">
- <param name="_ExtentY" value="10866">
- <param name="_StockProps" value="0">
- <param name="SRC" id="test" value="8a819eb250db23610150e9e13d6017dd.pdf">
- </object>
- </DIV>
- </BODY>
- </HTML>
|