<a href="index/first/firstpage.action">123</a>  
这样写能跳到action里
<s:action name=""></s:action> 如何写我写了几次都没成功http://127.0.0.1:8080/nldx/index/first/firstpage.action  这是action·action

解决方案 »

  1.   

    我是登陆后进入jsp 页面后条action 到首页。应为一些问题一定要进这jsp
      

  2.   

    <%@ taglib prefix="s" uri="/struts-tags"%>  <s:action name="firstpage.action" executeResult="true"/>
    这样也不行吗 
      

  3.   

    <a href="<s:url namespace='/xxx' action='firstpage'  />">123</a>
      

  4.   

    <s:action name="firstpage" namespace='index/first'></s:action>  不行
      

  5.   

    firstpage这个action理没有对应的跳转页面语句?
      

  6.   

    1>.<s:action>标签不是写链接用的。
    2>.写链接用<s:a>标签<s:a action="firstpage" namespace="/index/first">123</s:a>
      

  7.   

    <s:action name="firstpage" namespace='/index/first'>
    <result>....</result>
    </s:action>
    这么写。