调用基本过程,主要通过<logic:forward>
自动转发?理解没有问题吧。

解决方案 »

  1.   

    <html>
    <head>
        <title>Simple jsp page</title>
        <meta http-equiv="Refresh"
              content="0;url=HelloWord.do">
    </head><body>
    <%
        out.print("Redirct...");
    %>
    </body>
    </html>
    ====================
    这样最方便
      

  2.   

    如果用<logic:forward   >  ,会出现http://topic.csdn.net/t/20041022/11/3480798.html所说的问题,不知道以上的变通方法到底可行不可行????
      

  3.   

    <html:link forward=”welcome”>也可以的。