大家帮帮忙啊,补充以下我在家用的是tomcat5.5+jdk1.5.07

解决方案 »

  1.   

    response.sendRedirect("../changeIt.do");应该是:
    response.sendRedirect("/changeIt.do");
    吧.
      

  2.   

    <html:form name="sampleForm" action="../changeIt.do" method="post">
      <html:text name="sampleForm" property="thisText" />
      <html:text name="sampleForm" property="thatText" />
      <input type="submit" id="changeIt" value="change" />
    </html:form>将action="../changeIt.do"中的..除掉,成action="/changeIt.do"这样.
      

  3.   

    看看还是,../changeIt.do的问题,,都应当改为/changeIt.do,去掉点点