switch_noPortal.jsp 483 B

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