ERP-node/WebContent/WEB-INF/view/common/viewer.jsp

26 lines
899 B
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="com.pms.common.utils.*"%>
<%@ page import="java.util.*" %>
<%@include file= "/init.jsp" %>
<%
Map info = (HashMap)request.getAttribute("info");
System.out.println("info : "+info);
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>File Viewer</title>
<script>
$(document).ready(function(){
$("a.embed").gdocsViewer({width:750, height:550});
});
</script>
</head>
<body>
<form name="form1" id="form1" action="" method="post">
<%-- <a href="http://211.48.180.237/common/downloadFile.do?objId=${param.objId}" class="embed" style="text-align : center; display : block;">Download</a> --%>
<a href="http://211.48.180.237/WBSTemplate/test.ppt" class="embed" style="text-align : center; display : block;">Download</a>
</form>
</body>
</html>