12345678910111213 |
- <%@ page contentType="text/html; charset=utf-8" %>
- <%@ page import="kr.co.hsnc.common.util.*" %>
- <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
- <%
- ctx.init(request, response);
- %>
- <% if( !ctx.isSignedOn() ) { %>
- <META HTTP-EQUIV="refresh" Content="0.1; url=/supplierLogin.screen">
- <% }
- else { %>
- <META HTTP-EQUIV="refresh" Content="0.1; url=/mainPortal.screen">
- <% } %>
|