在tomcat中有个应用,主页下方设置了 "© 2009-2010. hello.com 保留所有权利.",该如何更改 hello.com 为其他的网址?
谢谢!
 

解决方案 »

  1.   

    主页中找不到对应语句"© 2009-2010. hello.com 保留所有权利.",<%@ page language="java" contentType="text/html; charset=UTF-8"%>
    <%@ include file="/common/tags.jsp"%><html>
    <o:MultiLanguage>
    <head>
    <title>welcome.jsp</title>
    <script language="javascript">
    function closeTips(){
    document.getElementById('tips').style.display="none";
    <%WebUser webUser = (WebUser) session
    .getAttribute(Web.SESSION_ATTRIBUTE_FRONT_USER);
    String applicationid = request.getParameter("application");
    String applicaiontId = (String) session
    .getAttribute(Web.SESSION_ATTRIBUTE_APPLICATION);
    HomePageHelper pageHelper = new HomePageHelper();
    pageHelper.setApplicationid(applicaiontId);
    String skinType = (String) session.getAttribute("SKINTYPE");
    if (skinType == null)
    skinType = "default";
    String contextPath = request.getContextPath();
    if (pageHelper.isHomePageExist(webUser)
    || PageHelper
    .hasDefaultHomePage(webUser, applicationid)) {
    out.println("window.location='" + contextPath + "/portal/"
    + skinType + "/homepage.jsp';");
    } else {
    out.println("window.location='" + contextPath + "/help/welcome/index.jsp';");
    }%>
    }function ev_onload() {
    if (parent.parent)
    parent.parent.document.getElementById('closeWindow_DIV').style.display = 'none';
    }
    </script>
    </head>
    <body onLoad="closeTips();ev_onload();" bgcolor="#FFFFFF"
    text="#000000" leftmargin="0" topmargin="0" marginwidth="0"
    marginheight="0">
    <div id="tips">
    <table width=100% height=100% align=center cellpadding=0 cellspacing=0
    border=0>
    <tr>
    <td align=center valign=middle><img
    src='<o:Url value="/resource/imgnew/loading.gif" />'> HomePage
    Loading........</td>
    </tr>
    </table>
    </div> </body>
    </o:MultiLanguage>
    </html>
      

  2.   

    看看是否在include包含的页面?看看是否是图片?看看是否用了frame?。。
      

  3.   

    是你那个tag.jsp里面的内容吧
    tag为你生成
    而非引用内容