123456789101112131415161718 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%
- //when no portal
- //get config param from web.xml
-
- String _autoUpdate = getServletConfig().getServletContext().getInitParameter("com.kingdee.eas.cp.autoupdater.autoUpdate");
- if(_autoUpdate == null || "".equals(_autoUpdate))
- {
- _autoUpdate = "true" ;
- }
-
-
- %>
- <jsp:forward page="createEasJnlp.jsp">
- <jsp:param name="autoUpdate" value="<%=_autoUpdate%>"/>
- </jsp:forward>
|