使用框架页,页面程序为:
<frameset rows="*" cols="153,*" framespacing="0" frameborder="auto" border="0">
  <html:frame action="/adminLeft" frameName="leftFrame" scrolling="auto" noresize="true"></html:frame>
  <frame src="right.jsp" name="mainFrame" id="mainFrame" title="mainFrame" >
</frameset>
<noframes><body>
</body>
</noframes>部分Action为:
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
if (!isLogin(request)) {
ActionMessages messages = new ActionMessages(); 
        messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("message.login.pleaselogin")); 
        saveMessages(request, messages); 
      return mapping.findForward("unlogin");
    }
    else {
      return mapping.findForward("adminleft");
    }
为什么全局转发的unlogin的页面只在左边框架显示?
怎么才能够整个页面显示?
请求大牛指教,衷心感谢!!