在struts中,一个action中可以有多个forward,例如:
<action path="/UserMast" type=......
   <set-property property="checkAccessOrder" value="false"/>
   <forward name="insert" path="......
   <forward name="updata" path="......
   <forward name="back" path="......
</action>在jsp中<html:submit property="back"> 返回 </html:submit>
画面上按下[返回]按钮后,转到在上面的action里的第三个forward指向的画面。现在我想用一个Link来实现一样的挑转,因为是frame里的子画面的URL所以只能用Link方式。
请问有办法实现吗?