index.jsp 409 B

12345678910111213
  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="kr.co.hsnc.common.util.*" %>
  3. <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
  4. <%
  5. ctx.init(request, response);
  6. %>
  7. <% if( !ctx.isSignedOn() ) { %>
  8. <META HTTP-EQUIV="refresh" Content="0.1; url=/login.screen">
  9. <% }
  10. else { %>
  11. <META HTTP-EQUIV="refresh" Content="0.1; url=/main.screen">
  12. <% } %>`