1234567891011121314151617181920212223 |
- <%@ taglib uri="/WEB-INF/template.tld" prefix="template" %>
- <%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
- <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
- <%
- ctx.init(request, response);
- %>
- <HTML>
- <HEAD>
- <TITLE><template:insert parameter="title"/></TITLE>
- <META http-equiv="Content-Type" content="text/html; charset=utf-8">
- <!-- -->
- </HEAD>
- <BODY bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
- <TABLE width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <TR>
- <TD valign="top" align="center">
- <template:insert parameter="body"/>
- </TD>
- </TR>
- </TABLE>
- </BODY>
- </HTML>
|