123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ page import="com.kingdee.eas.cp.common.web.util.WebContextUtil"%>
- <%@ taglib uri="/WEB-INF/tld/struts-bean.tld" prefix="bean" %>
- <%@ page import="com.kingdee.bos.Context"%>
- <%@ page import="java.util.Vector,java.util.Locale" %>
- <%@ page import="com.kingdee.eas.cp.common.web.util.PortalPersonalSetUtil" %>
- <%@ page import="com.kingdee.eas.cp.common.web.util.WebContextUtil" %>
- <%@ page import="com.kingdee.eas.cp.eip.sso.util.EASWebContextUtil"%>
- <%@ page import="org.apache.struts.Globals" %>
- <%
- String localeStr = (String)request.getParameter("locale");
-
- Locale locale = new Locale("l2");
-
- if(localeStr!=null&&!"".equals(localeStr)){
- locale = new Locale(localeStr.toLowerCase());
- }
-
- session.setAttribute(Globals.LOCALE_KEY,locale);
- String loginLogoUrl = PortalPersonalSetUtil.getAttribute(request, "picture" , "help_title_logo", "color", WebContextUtil.getColorSchema(request), 1, locale);
-
- // modify by liang yongyuan for BUG BT399642 in 2010.06.23
- String visible = PortalPersonalSetUtil.getAttribute("picture", "help_title_logo", "visible");
- %>
- <html>
- <head>
- <link rel="stylesheet" href="<%=session.getAttribute(com.kingdee.eas.portal.web.control.Globals.USER_SKIN)%>/css/helper.css" type="text/css">
- </head>
- <body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>
- <table width="100%" height="57" cellpadding="0" cellspacing="0" background="<%=session.getAttribute(com.kingdee.eas.portal.web.control.Globals.USER_SKIN)%>/image/helper/help_title_fill.gif">
- <tr><td>
- <table align="center" width = "900px" height="57" valign="top" cellpadding="0" cellspacing="0">
- <tr>
- <td width = "900px" height="57" valign="top" cellpadding="0" cellspacing="0" align="left">
- <% if(visible != null && "true".equals(visible)) { %>
- <div class="helper_title_logo"><img width="170px" height="57px" src="<%=EASWebContextUtil.render(request, loginLogoUrl)%>"/></div>
- <% } %>
- </td>
- </tr>
- </table>
- </td></tr>
- </table>
- <table width="900px" height="509" align="center" cellpadding="0" cellspacing="0" >
- <tr>
- <td><img src="<%=session.getAttribute(com.kingdee.eas.portal.web.control.Globals.USER_SKIN)%>/image/helper/help_banner_left.gif"></td>
- <td align="center" height="30" valign="middle" width="100%" class="helper_title" background="<%=session.getAttribute(com.kingdee.eas.portal.web.control.Globals.USER_SKIN)%>/image/helper/help_banner_fill.gif">
- <bean:message bundle="portal" key="contact_me"/>
- </td>
- <td><img src="<%=session.getAttribute(com.kingdee.eas.portal.web.control.Globals.USER_SKIN)%>/image/helper/help_banner_right.gif"></td>
- </tr>
- <tr>
- <td align="left" valign="top" colspan="3">
- <table width="100%" height="100%" cellpadding="0" cellspacing="0">
-
- <tr>
- <td colspan="3" align="left" valign="top">
- <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" >
- <tr>
-
- <td width="1" class="helper_borderLine"></td>
- <td >
- <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td height="1" class="helper_borderLine"></td>
- </tr>
- <tr>
- <td height="12"></td>
- </tr>
- <tr>
- <td ><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="12"></td>
- <td align="center">
- <%@ include file="contact_us_content.jsp" %>
- </td>
- <td width="12"></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td height="12"></td>
- </tr>
- <tr>
- <td height="1" class="helper_borderLine"></td>
- </tr>
- </table>
- </td>
-
- <td width="1" class="helper_borderLine"></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|