action中的execute方法是自动执行的,你可以在execute方法中用servletResponse.sendRedirect("another.jsp");

解决方案 »

  1.   

    public ActionForward execute(ActionMapping mapping, 
                                     ActionForm form,
                                     HttpServletRequest request, 
                                     HttpServletResponse response)
    {
        ActionForward actionForward = null;    // Do something...    actionForward = mapping.findForward("AnotherJsp");
        return actionForward;
    }然后在struts-config.xml中添加转发连接                  <action path = "/***"
    type = "***Action"
    >
    <forward name="AnotherJsp" path="/***.jsp" />
    </action>
      

  2.   

    fenghuangling(凤凰令)   顶,up